links for 2007-11-14
-
La idea: difundir y concientizar a todos sobre la importancia de crear sitios accesibles, sin dejar a nadie afuera.
NoSQL Databases and Security: Jeff Darcy writes about NoSQL systems’ security (actually the lack of): Most NoSQL stores have no concept of security. […] Mostly it falls into two categories: encryption and authentication/authorization (collectively “a …
Well that precisely covers the most important features that WordPress 3.0 offers to its user community. A number of them as we may notice help even the beginners to efficiently exploit the immense potential of wordpress.
Post original
Close Pixelate es un script que convierte una imagen en su correspondiente pixelada haciendo uso de HTML5 y canvas. Se le pueden indicar las siguientes opciones: resolución, forma del pixelado, tamaño, desplazamiento y canal alpha
Su uso es tan sencillo como ejecutar lo siguiente:
var docReady = function() {
document.getElementById('portrait-image').closePixelate([
{ resolution : 24 },
{ shape : 'circle', resolution : 24, size: 16, offset: 12, alpha: 0.5 }
]);
};
window.addEventListener( 'DOMContentLoaded', docReady, false);
Vía / WebAppers