Success with summer of code 2009
I am getting more busy these days with lots of work which ranges from coding to college and hostel life and as a result I am getting more and more lazier to blog :P
I have successfully completed my Google Summer of Code 2009? programs with Pardus project. The Pardusman is now ready to build custom pardus distros through web. Some of the work remaining is to? setup the server configuration files at pardus server. I will be looking forward to setup it in a couple of weeks. Once it is setup, it would be able to build distros through the web interface at http://pardusman.pardus.org.tr. Waiting for the official Summer of Code T-Shirt to be shipped. :P
The ExcelX, the 10th edition of our college techfest is coming soon during Oct 9-11th of 2009. I am one of the co-ordinators and I have been working on it. Had a good time coding in Google Appengine. It is cool web framework to work with. Hats off to Google. I would come up with a Online Shell Scripting contest web application within 5 days of coding. Feels awesome.
Google appengine is a mix of several web frameworks bitten by python. it derives most of the things from Django 0.96. Django 1.0 is the latest release and I have been working on it. Hence backward compatibility was an issue while coding. Some features are missing. It eated up some of my time finding out what the issue is.
Suppose you are guy who is familiar with Django 1.0 and never used 0.96, I might be trapped tracing the issue while coding. So I suggest you to verify whether that feature is available in Django 0.96 while coding with Google Appengine.
An example, In template system, we cant use dictionary traversal in the following manner
1
2
3
4
5
6
7
8
9
10
11
{% for key,val in dictionary.items %}
{{ key }} : {{ val }}
{% endfor %}
instead you have to use 0.96 style,
{% for item in dictionary %}
{{ item.0 }} : {{ item.1 }}
{% endfor %}
Try out. Have a good time with GAE :)