User:HoboPrimate: Difference between revisions
HoboPrimate (talk | contribs) m (→Ideas) |
HoboPrimate (talk | contribs) (added icon/logo idea for book bundles) |
||
Line 6: | Line 6: | ||
= About me = |
= About me = |
||
My name is Eduardo Silva. |
My name is Eduardo Silva. |
||
All of these where made with Inkscape, and are plain SVG files. They are work in progress! |
|||
= Review Squad logo = |
= Review Squad logo = |
||
Line 22: | Line 24: | ||
[[Image:Olpc-review3.png]] |
[[Image:Olpc-review3.png]] |
||
It's a plain SVG, made with inkscape. Feel free to mess with it. |
|||
= Translation/Multilingual/Translate icon = |
= Translation/Multilingual/Translate icon = |
||
== Ideas == |
|||
Line 34: | Line 31: | ||
⚫ | |||
⚫ | |||
[[Image:Translate4.svg]] |
|||
= Ebook Bundle logo/icon = |
|||
⚫ | |||
A possible generic logo/icon for book content bundles. I think I'm becoming maniac, and trying for everything to be cool next to the one laptop per child logos! |
|||
⚫ | |||
= Activity Icons = |
|||
⚫ | |||
[[Image:Spoon-Sugar.svg]] |
|||
= Other Stuff = |
|||
An activity icon for a culinary-like Activity. Not yet Sugarized, meaning I haven't managed for both fill and stroke colors to follow the XO colors. If you can do it, go for it! |
|||
Not sure though if such an activity would be necessary. A kid/parent could create a recipe in Write, and tag it appropriately (recipe chocolate cake). |
|||
= My Random Notes = |
|||
== Etoys == |
== Etoys == |
||
Revision as of 07:15, 5 August 2007
About me
My name is Eduardo Silva.
All of these where made with Inkscape, and are plain SVG files. They are work in progress!
Review Squad logo
What comes up to your mind when you see it?).
Reasoning: I tried to convey in a simple way what people (kids and others) being part of the review groups will be doing, which is to "stamp" their reviews (likes and dislikes) on all kinds of content done for the XO (be it software, static, dynamic, etc). While also keeping in style with the One Laptop Per Child logos at laptop.org.
How it could fit with the OLPC logos:
Translation/Multilingual/Translate icon
Hmm, This one could work as an Annotation icon/button.
Ebook Bundle logo/icon
A possible generic logo/icon for book content bundles. I think I'm becoming maniac, and trying for everything to be cool next to the one laptop per child logos!
Activity Icons
An activity icon for a culinary-like Activity. Not yet Sugarized, meaning I haven't managed for both fill and stroke colors to follow the XO colors. If you can do it, go for it! Not sure though if such an activity would be necessary. A kid/parent could create a recipe in Write, and tag it appropriately (recipe chocolate cake).
My Random Notes
Etoys
In Etoys, I want a player to move forward 5 steps a certain amount of times. But in succession, i.e, 5 steps forward, then +5 steps forward, etc. If in the same script I put "Repeat 5 times - Do forward 5", it will be the same as "forward 25" If I try create 2 scripts for the player, "player scriptA" contains "player forward by 5", and "player scriptB" contains "Repeat 5 times - Do scriptA", it also moves once 25 pixels. I can explain what and why I want to do this. I want to have an ovni to move a randon number of times in a direction, then a random number of times in another, and so on infinity. oh, and in random directions as well.
- Figured a way by by looking at the Welcome Screen car script of the OLPC etoys.
- I created a red polygon square around the screen. Then used this code for the Ovni script (Following the etoys look):
- Test ovni's <blue> color sees <red> color
- Yes ovni's forwardDirection decrease by (91 + random (90))
- ovni forward by 10
- No
- ovni forward by 10
- ovni bounce silence
- Test ovni's <blue> color sees <red> color
There may be a better way, but right now this is how I did it.