Si pudiera volar me la pasaria con esta bandada
De compras para devsar (Taken with instagram)
Arcoiris (Taken with instagram)
Tortilla (Taken with instagram)
plaza pictures made on wegif
Login with Tumblr
In case you miss it you can now login with your Tumblr on WeGIF !!!
Please reblog!
Cheers, The WeGIF Team
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>
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")

