Skip to content

Instantly share code, notes, and snippets.

View chemscobra's full-sized avatar

Gustavo Leon chemscobra

  • Nopal Studios
  • Santiago
View GitHub Profile
@chemscobra
chemscobra / tailwindColors.js
Last active November 13, 2020 20:02
Updated Tailwind UI color palette for tailwind.config.js
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#000',
white: '#fff',
'cool-gray': {
50: '#f8fafc',
100: '#f1f5f9',
@chemscobra
chemscobra / setup.sh
Created May 28, 2019 12:26 — forked from mavieth/setup.sh
Shell script to create a simple Django project.
# 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`
@chemscobra
chemscobra / validarRUT.html
Created May 23, 2018 16:28 — forked from gaulatti/validarRUT.html
HTML5 Chilean RUT Validator
<!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>