Arcoiris (Taken with instagram)
Tortilla (Taken with instagram)
plaza pictures made on wegif
In case you miss it you can now login with your Tumblr on WeGIF !!!
Please reblog!
Cheers, The WeGIF Team
Photography has changed forever.
<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>
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")
We started AppEnginePeople.net to learn more about GAE and hopefully create something useful. Enough devs signed up and showed interest, more then we anticipated, so we decided to open source the code of the site.
It’s available on Bitbucket and licensed under the Apache license: https://bitbucket.org/sserrano/ae-people/src
It’s one of our first app engine projects. Sorry if the code is messy. We hope it’s useful and don’t hesitate to fork and contribute patches.
thanks, Mugur Marculescu, Sebastian Serrano and Martin Riva.