Tuesday, May 1, 2012

Si pudiera volar me la pasaria con esta bandada

Saturday, March 3, 2012
De compras para devsar (Taken with instagram)

De compras para devsar (Taken with instagram)

Tuesday, January 24, 2012
Arcoiris (Taken with instagram)

Arcoiris (Taken with instagram)

Thursday, January 12, 2012
Tortilla (Taken with instagram)

Tortilla (Taken with instagram)

Friday, November 11, 2011
Domingo made on wegif

Domingo made on wegif

Thursday, November 10, 2011
plaza pictures made on wegif
Sunday, October 30, 2011

Login with Tumblr

wegif:

In case you miss it you can now login with your Tumblr on WeGIF !!!

Please reblog!

Cheers, The WeGIF Team

Thursday, October 20, 2011
mugurm:

Photography has changed forever.

mugurm:

Photography has changed forever.

Friday, August 12, 2011

analytics code to activate site speed

<script type=”text/javascript”>
var _gaq = _gaq || [];
_gaq.push([‘_setAccount’, ‘UA-XXXXX-X’]);
_gaq.push([‘_trackPageview’]);
_gaq.push([‘_trackPageLoadTime’]);
(function() {
var ga = document.createElement(‘script’); ga.type = ‘text/javascript’; ga.async = true; ga.src = (‘https:’ == document.location.protocol ? ‘https://ssl’ : ‘http://www’) + ‘.google-analytics.com/ga.js’;
var s = document.getElementsByTagName(‘script’)[0]; s.parentNode.insertBefore(ga, s); })();
</script>

Friday, July 29, 2011

Empty Gif view

Python/Django version of a view that returns an empty 1x1 gif image

from django.http import HttpResponse
code = "\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\xf0\x01\x00\xff\xff\xff\x00\x00\x00\x21\xf9\x04\x01\x0a\x00\x00\x00\x2c\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3b"

def empty_gif(request):      
    return HttpResponse(code, mimetype="image/gif")