Developers/Documentation: Difference between revisions
(Add developer's tag) |
(Where are you, what's next...) |
||
Line 2: | Line 2: | ||
[[Developers/Communication|Previous]] [[Developers/FAQ|Next]] |
[[Developers/Communication|Previous]] [[Developers/FAQ|Next]] |
||
By the point, you should have a working Sugar environment (or a substitute for it), a project idea, and an idea how and where to ask for help if you have problems. The next step is to actually start coding. |
|||
⚫ | As with most Open Source software projects, we have difficulties with documentation. We are '''very''' interested in finding people interested in documenting the system. If you are too shy about your coding skills to write code, helping us document the code-base would be an amazing and valuable contribution. |
||
= Tutorials = |
= Tutorials = |
||
[[Developers/Stack#Python/PyGTK|PyGTK]] developers will find a |
[[Developers/Stack#Python/PyGTK|PyGTK]] developers will find a collection of [[Tutorials]] available, from very simple Hello World projects to an in-depth description of the development of [[Block Party]]. |
||
[[Developers/Stack#OLPCGames|Pygame]] developers will likely want to start with: |
[[Developers/Stack#OLPCGames|Pygame]] developers will likely want to start with: |
||
Line 31: | Line 31: | ||
* [[Sugar Code Snippets]] a few canonical code fragments that may be of use when coding in PyGTK |
* [[Sugar Code Snippets]] a few canonical code fragments that may be of use when coding in PyGTK |
||
= Contributing = |
|||
⚫ | As with most Open Source software projects, we have difficulties with documentation. We are '''very''' interested in finding people interested in documenting the system. If you are too shy about your coding skills to write code, helping us document the code-base would be an amazing and valuable contribution. |
||
Helping organize the wiki (the web site you are currently reading) to better document the platform and development process would also be very helpful. |
|||
[[Developers/Communication|Previous]] [[Developers/FAQ|Next]] |
[[Developers/Communication|Previous]] [[Developers/FAQ|Next]] |
Revision as of 02:49, 15 December 2007
By the point, you should have a working Sugar environment (or a substitute for it), a project idea, and an idea how and where to ask for help if you have problems. The next step is to actually start coding.
Tutorials
PyGTK developers will find a collection of Tutorials available, from very simple Hello World projects to an in-depth description of the development of Block Party.
Pygame developers will likely want to start with:
- Game Development Newbies -- general introduction
- Game development HOWTO -- 5-minutes to your first activity in Pygame
Reference
See the API Reference for pointers to the various libraries' reference documentation. You can also run the pydoc script on an XO in order to have browseable pydoc documentation locally. To do this, open a Terminal activity and run:
pydoc -p 8080
then open a Web Browser activity and go to the url:
http://localhost:8080/
to view the documentation. This approach works best with Python-coded libraries which have spent some time on their docstrings (and generally requires that you know English, as most docstrings are written in English).
Resources
- The Developer's Category collects everything in the wiki that's been tagged as pertaining to developers (it's a bit hard to navigate)
- Developers Program focuses on development for the core system, but with information useful for activity developers as well
- Sugar Code Snippets a few canonical code fragments that may be of use when coding in PyGTK
Contributing
As with most Open Source software projects, we have difficulties with documentation. We are very interested in finding people interested in documenting the system. If you are too shy about your coding skills to write code, helping us document the code-base would be an amazing and valuable contribution.
Helping organize the wiki (the web site you are currently reading) to better document the platform and development process would also be very helpful.