Forked from Giovanny's Pen Pixel art Experiments.
Forked from Captain Anonymous's Pen Pixel art Experiments.
| function main(word){ | |
| word = word.replace(/\s/g,''); | |
| return word == word.split('').reverse().join(''); | |
| }; |
| #include<iostream.h> | |
| #include<stdlib.h> | |
| #include<fstream.h> | |
| #include<time.h> | |
| #include<string.h> | |
| #include<stdio.h> | |
| //estas son las clases: |
| Estado del Arte desarrollo de videojuegos en HTML5 | |
| -- Capacidades en el browser | |
| - canvas | |
| - webgl | |
| - dispositivos de entrada | |
| - key events | |
| - mouse events | |
| - usermedia: http://www.html5rocks.com/es/tutorials/getusermedia/intro/ | |
| - mic |
Forked from Giovanny's Pen Pixel art Experiments.
Forked from Captain Anonymous's Pen Pixel art Experiments.
| function ordenar(numeros){ | |
| for(var i=0; i<numeros.length; i++){ | |
| numeros[i] = parseInt(numeros[i]); | |
| } | |
| for(i=0; i<numeros.length; i++){ | |
| for(var j=0; j<numeros.length-1; j++){ | |
| if(numeros[j] > numeros[j+1]){ | |
| var tmp = numeros[j+1]; | |
| numeros[j+1] = numeros[j]; |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>The Game</title> | |
| </head> | |
| <body> | |
| <canvas id="board" width='700' height='600'></canvas> | |
| <script src="http://code.jquery.com/jquery-1.9.1.js"></script> | |
| <script> |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>The Game</title> | |
| </head> | |
| <body> | |
| <canvas id="board" width='700' height='600'></canvas> | |
| <script src="http://code.jquery.com/jquery-1.9.1.js"></script> | |
| <script> |
| #!/usr/bin/python | |
| import sys | |
| import Image | |
| from midiutil.MidiGenerator import MidiGenerator | |
| from midiutil.TrackGen import LoopingArray | |
| filename = sys.argv[1] | |
| midifilename = filename[0:filename.find('.')]+'.midi' |