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
theme: { | |
colors: { | |
transparent: 'transparent', | |
current: 'currentColor', | |
black: '#000', | |
white: '#fff', | |
'cool-gray': { | |
50: '#f8fafc', | |
100: '#f1f5f9', |
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
# Shell script for create a simple Django project. | |
# wget --output-document=setup.sh https://goo.gl/pm621U | |
# Type the following command, you can change the project name. | |
# source setup.sh myproject | |
# Colors | |
red=`tput setaf 1` | |
green=`tput setaf 2` |
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
<!doctype html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Validador de RUT HTML5</title> | |
</head> | |
<body> | |
<form> | |
<input type="text" id="rut" name="rut" required oninput="checkRut(this)" placeholder="Ingrese RUT"> | |
<button type="submit">Validar RUT y Enviar Form</button> |