My first published article

Italian Web Design, an italian web design&development community, has published an article of mine(in italian language) about how I implemented the blog post date clip on this site, respecting the ‘responsivity‘ of the Twenty Eleven theme.
It is not a step by step tutorial but a presentation of my approach to this WordPress theme customization exercise.

Backbone.js learning resources

I just found out today that Addy Osmani started a creative-commons book on Backbone.js. It’s written in Markdown and hosted on GitHub so it’s really easy to contribuite.

I catch this occasion to remeber two others available Backbone.js resources:

Working with Color in JavaScript

Some links to useful code to work with colors in JavaScript.

For example to normalize  browser differences when getting computed styles:

var color = new Color($('#container').css('background-color'));

and we get a color object independently from the format returned: rgb(), hex,…