Colección de Recursos
Recursos y lecturas generales recomendadas
- http://dochub.io_ (Manuales de referencia técnicos interactivos)_
- javascript-style-guides-and-beautifiers_ (Guías de estilos)
# encoding=utf-8 | |
# Idea of a Custom data types for validate the Chilean RUT in Flask-RESTful | |
# by @lacosox | |
from itertools import cycle | |
#rut='XXXXXXXX-X' | |
def chilean_rut(rut_text): | |
rut_text.upper().strip().replace(".", "").replace("K", "10") | |
(rut, dv)=rut_text.split('-') |
window.Persona = window.Persona || {}; | |
window.Persona = (function () { | |
"use strict"; | |
function Persona() { | |
} | |
var nombre = ""; | |
Persona.prototype.getNombre = function () { | |
pensar('Entrego mi nombre<br/>'); |
extract () { | |
if [ -f $1 ]; | |
then | |
case $1 in | |
*.tar) tar -xvf $1 ;; | |
*.tgz) tar -xvzf $1 ;; | |
*.tar.gz) tar -xvzf $1 ;; | |
*.tbz2) tar -xvjf $1 ;; | |
*.tar.bz2) tar -xvjf $1 ;; | |
*.gz) gunzip $1 ;; |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Web Storage</title> | |
<script type="text/javascript"> | |
function almacenar() | |
{ | |
if (typeof(Storage)!=='undefined') | |
{ |
var Persona = { | |
nombre: "", | |
getNombre: function(){ | |
this.pensar('Entrego mi nombre<br/>'); | |
return this.nombre; | |
}, | |
setNombre: function(nombre){ | |
this.pensar('Cambio mi nombre<br/>'); | |
this.nombre=nombre; | |
}, |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Prueba Canvas</title> | |
<script type="text/javascript"> | |
function dibujar() | |
{ | |
var canvas=document.getElementById('miCanvas'); | |
var ctx=canvas.getContext('2d'); | |
ctx.fillRect(100,100,200,50); |
#!/bin/bash | |
# | |
# This file echoes a bunch of color codes to the | |
# terminal to demonstrate what's available. Each | |
# line is the color code of one forground color, | |
# out of 17 (default + 16 escapes), followed by a | |
# test use of that color on all nine background | |
# colors (default + 8 escapes). | |
# |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>SVG</title> | |
</head> | |
<body> | |
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> | |
<rect x="100" y="100" width="200" height="100" style="stroke:#FF0000; fill:#FF0000;"/> | |
<polygon points="100,100 150,50 200,100 250,50 300,100" style="stroke:#FF0000; fill:#FF0000;" /> |
help='translate <text> [[<source language>] <target language>] | |
if target missing, use DEFAULT_TARGET_LANG | |
if source missing, use auto' | |
# adjust to taste | |
DEFAULT_TARGET_LANG=en | |
if [[ $1 = -h || $1 = --help ]] | |
then | |
echo "$help" |