Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am lopezezequiel on github.
  • I am lopezezequiel (https://keybase.io/lopezezequiel) on keybase.
  • I have a public key ASBNkY0uVJkJdAt6whLZk4CDsVZ043fWGRXStX_VhB5gmwo

To claim this, I am signing this object:

@lopezezequiel
lopezezequiel / webp2png.embed.html
Last active May 12, 2017 06:18
WebP to PNG Cross-Browser Extension
<a style="color: #FFFFFF; background-color: #4dAe51; padding: 5px; border: 1px solid #FFFFFF; font-size: 1rem; font-family: arial, sans-serif; text-decoration:none; " href="javascript: (function(){var images=document.getElementsByTagName('img');images=[].slice.call(images);for(var i=0;i<images.length;i++){var img=images[i];img.crossOrigin='Anonymous';var canvas=document.createElement('canvas');var context=canvas.getContext('2d');canvas.width=img.naturalWidth;canvas.height=img.naturalHeight;context.drawImage(img,0,0);try{img.src=canvas.toDataURL('image/png')}catch(err){canvas.style.width=img.width+'px';canvas.style.height=img.height+'px';img.parentNode.insertBefore(canvas,img);img.parentNode.removeChild(img)}}})()" onclick="event.preventDefault ? event.preventDefault() : (event.returnValue = false); alert('Arrastre el botón a sus marcadores. Cuando este en un sitio que tenga imágenes en formato WebP haga click en el marcador y las imágenes se convertirán en PNG.');">webp2png</a>
@lopezezequiel
lopezezequiel / from_file.py
Created December 15, 2016 19:34
Face detection examples - Python + OpenCV
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Ejemplo de detección de rostros a partir de archivos de imagen
Basado en el ejemplo de la documentación oficial que se puede encontrar en
http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_objdetect/py_face_detection/py_face_detection.html
Autor: López Ricardo Ezequiel
Sitio: lopezezequiel.com
@lopezezequiel
lopezezequiel / Sine wave generator
Created November 27, 2016 19:58
This gist allows you to generate a sine wave whose period changes according to a potentiometer
/*
Graficador de onda senoidal
El periodo de la onda se puede configurar y se lee de un potenciometro.
En este caso grafico con este gist https://gist.github.com/electronut/d5e5f68c610821e311b0
pero cada uno es libre de usar el graficador que desee. Ademas es
posible sacar la onda por una salida PWM o incluso conectar un DAC.
Creado por Lopez Ricardo Ezequiel
@lopezezequiel
lopezezequiel / example.py
Last active December 28, 2015 00:41
recomp lets you build regular expressions easily and reuse them
from recomp import recomp
import re
#definition
r = recomp()
r.year = '[0-9]{2}'
r.month = '(?:0[1-9]|1[12])'
r.day = '(?:0[1-9]|[12][0-9]|3[01])'
r.date = '{day}\-{month}\-{year}'
r.hh = '(?:[01][0-9]|2[0-3])'
@lopezezequiel
lopezezequiel / .gitignore
Last active December 29, 2015 19:27
Keep alive your FTP connections
ignore