Learning Cocos2d - cocos2d-python

I want to learn cocos2d on UBUNTU 11.06
I have found tutorials, But if you people can help, then I can learn efficiently.
If you know any Link / Tutorial / book, please let me know

I have gathered some knowledge from http://www.learn-cocos2d.com/ ,but not exact for UBUNTU..

You can go to Cocos2D Python's programming guide, and I also recommend using other guides online such as the one I've put on GitHub.

Related

Integrating Forums in Django

I am pretty new to the coding world and django, I am pretty far along within a site and I would like to add a forum function
does anyone have suggestions, I am currently using 1.8.2
I was able to get spirit working on its own, but could not figure out how to integrate it. I also tried djangobb, but the same as spirit.
any help would be great
You should check Pybbm. It is fully documented and easy to customize.

How to use django-discussion application?

I recently learned about django-discussion. I don't know it may be a great application but I couldn't find any documentation, no example anywhere on the web.
Can somebody please guide me to the right direction? How can I integrate it with other application?
According to the lists of django forum applications here and here, there are better alternatives like django-threadedcomments, djangobb or pybbm - take a look.
Plus, django-discussion is not actively developed now.
Hope that helps.

guide to translating django application (OSQA)?

I want to translate OSQA into my native language, but I'm a total newbie to Django.
I've seen that there are other questions here on SO relating 0SQA. (especially this one)
So if anyone could guide me how to accomplish this task. (I’ve done research before posting question here, but I didn’t find anything understandable)
Thank you for any answers, suggestions, tips.
You can install the rosetta package. Here are more informations and a simple step by step installation. http://meta.osqa.net/questions/11183/where-do-i-find-italian-rosetta-language-pack

Recommendations for C++ open source game engines on IPhone

I decided that I want to make a game for the iphone I was thinking of using oolong or sio2 any recommendations?
Both have the problem of lack of tutorials, is it possible to somehow use a normal C++ game tutorial and integreate the engines rather than the one used in the tutorials? So if the C++ tutorial talks of creating an engine I can skip it and use sio2 or oolong?
Thanks
You're making a game, not a game engine. The short answer is, yes, you can just use those engines to make the game.
The long answer is that you should probably go through the tutorials doing it the way that they do it just to get a feeling for C++/OpenGL/whatever. Then, using the knowledge that you have gained, make your own game using oolong or SIO. Trust me, you are not going to want to use the code you wrote when you were learning C++ to make an actual game, unless you can read something and immediately master it.
Look into Unity. Not C++ for the scripting, but it's a very popular engine.
How about cocos2d? It's BSD license, has docs and tutorials, and I've seen many people use it to create a game in a day.

Please help my learning in Django

Hi All I am new on Django and python.I want to wirte program with Django .So please share me useful ideas and concept.How can I set up djanog in my window OS.
I little confuse and occur some errors while I read ebooks.
Share me with all experiences please in step by step.
Thank for all
http://www.djangobook.com is your friend. Free, well written and generally ace.
First, if you're new in python read dive into python, you must use python 2.5 or 2.6 not 3 (for django at least)
For windows here's a good tutorial. Then read the djangobook
For further information you can read Pro Django
And remember the oficial docs is very well written.
This may help you to start
This is great resource for you Getting Started with Django
Enjoy.
The first thing you should do is get yourself a project, it can be anything. The classic django-learning project is a blog.
Python is fairly easy to learn once you have some programming experience. I recommend that you go through the official tutorial. This google class also looks pretty good. You don't need to know the standard library all that much -- just enough python to find your way around whenever you need something. I'd say you can pick up python in a few afternoons of work.
After that, go through the django tutotial to get an idea of how to get started. Then start with your project using the docs which are quite good. They also contain an overview and installation section which may be handy. After you've gotten your feet wet, read the django book and then go fix all the things that could be better about your project.
Just like with any kind of programming, the key is to be constantly practicing and improving your code.