<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.kidsoncomputers.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kocadmin</id>
	<title>Kids on Computers - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.kidsoncomputers.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kocadmin"/>
	<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Special:Contributions/Kocadmin"/>
	<updated>2026-05-06T04:31:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.1</generator>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Template:Resources&amp;diff=1882</id>
		<title>Template:Resources</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Template:Resources&amp;diff=1882"/>
		<updated>2023-12-11T22:10:07Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [http://www.kidsoncomputers.org/needed Donation Link]&lt;br /&gt;
* [[volunteer | Volunteer Link]]&lt;br /&gt;
* [http://www.kidsoncomputers.org/labs School Labs]&lt;br /&gt;
* Our [[Organization]]&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Training:WebCourse&amp;diff=25</id>
		<title>Training:WebCourse</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Training:WebCourse&amp;diff=25"/>
		<updated>2012-01-06T23:21:10Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;==Huajuapan Web Coding Activities==  ===Preparation=== * Have Lesson Folders unzipped and available on desktop * Install Firefox and Firebug on computer * Have http://aumha.org/h...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Huajuapan Web Coding Activities==&lt;br /&gt;
&lt;br /&gt;
===Preparation===&lt;br /&gt;
* Have Lesson Folders unzipped and available on desktop&lt;br /&gt;
* Install Firefox and Firebug on computer&lt;br /&gt;
* Have http://aumha.org/html/colorsb.htm open in browser&lt;br /&gt;
* Figure out which text editor works best in edubuntu - OpenOfficeWriter&lt;br /&gt;
&lt;br /&gt;
===Lesson 0: Choose / build your avatar ===&lt;br /&gt;
* If there is internet access, have students build their avatar, name it avatar.png and copy avatar into Group0 lesson folders&lt;br /&gt;
* If there is no internet access, have students choose avatar from Avatars. The avatar number they choose corresponds to the group folder they will be working in.&lt;br /&gt;
&lt;br /&gt;
===Lesson 1: Making web pages===&lt;br /&gt;
====What is HTML?====&lt;br /&gt;
* HTML stands for HyperText Markup Language. &lt;br /&gt;
* HTML is the language that browsers understand. Just like we speak Spanish and English, browsers speak HTML. &lt;br /&gt;
* HTML documents are often refered to as &amp;quot;Web pages&amp;quot;. The browser retrieves Web pages from Web servers that thanks to the Internet, can be pretty much anywhere in World.	&lt;br /&gt;
* So when you go to any web site in your browser, you are going to an HTML page. &lt;br /&gt;
&lt;br /&gt;
* Today&#039;s we&#039;re going to learn how to start making our own web pages and also learn a few cool tricks we can do easily. 	 	&lt;br /&gt;
* How many of you have made a web page before? &lt;br /&gt;
* OK, let&#039;s make our first web page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Let&#039;s make our first web page: ====&lt;br /&gt;
* Open up lesson1.html&lt;br /&gt;
* DOCTYPE - Document Type Declaration	&lt;br /&gt;
* html&lt;br /&gt;
* An HTML document has a HEAD and a Body&lt;br /&gt;
** head&lt;br /&gt;
** title&lt;br /&gt;
** body&lt;br /&gt;
* Look @ page in browser. 	&lt;br /&gt;
* Bold example&lt;br /&gt;
* H1&lt;br /&gt;
* Paragraph&lt;br /&gt;
* Does anyone notice a pattern for the way these tags are written?&lt;br /&gt;
** Just like each sentence in the spanish language begins with a capital letter and ends with a punctuation mark, there&#039;s a pattern to HTML tags.	&lt;br /&gt;
** Each tag has a left angle bracket, the tag name, then a right angle bracket. &lt;br /&gt;
** Then the content to go between the opening and closing tag. &lt;br /&gt;
** And then a closing tag which has a left bracket, a forward slash, the tag name, and then a right angle bracket. 	&lt;br /&gt;
*** Tags - Tags enclose content. The names of tags describe the meaning of content. &lt;br /&gt;
***  If you remember, HTML stands for hypertext markup language. These tags are why its called Markup Language. The tags delimit content so we can assign meaning and presentation for the content we want on our pages. &lt;br /&gt;
&lt;br /&gt;
** Adding an image&lt;br /&gt;
** Adding an anchor tag&lt;br /&gt;
** Who can guess how to do both bold and italicized&lt;br /&gt;
&lt;br /&gt;
==== CSS ====&lt;br /&gt;
* There is a way to add styles to pages. And it is called CSS.&lt;br /&gt;
* Cascading Style Sheets (CSS) is a style sheet language used to describe the look and formatting of a document written in HTML (or any markup language)&lt;br /&gt;
* Copy Script file	&lt;br /&gt;
* Change colors &lt;br /&gt;
** http://aumha.org/html/colorsb.htm&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Some examples:&#039;&#039;&#039;&lt;br /&gt;
** What are some of your favorite web sites?&lt;br /&gt;
** http://kids.yahoo.com/&lt;br /&gt;
** http://www.girlstart.com/&lt;br /&gt;
** http://www.kids.gov/&lt;br /&gt;
** http://wikipedia.org/&lt;br /&gt;
** http://flickr.com&lt;br /&gt;
** http://mail.yahoo.com&lt;br /&gt;
	&lt;br /&gt;
* Now that you have all made your first web page, you can call yourself web developers. :-D&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Lesson 2: JavaScript and YUI Overview ===&lt;br /&gt;
	&lt;br /&gt;
* Let&#039;s copy your lesson1 file into the lesson2 folder. We&#039;re going to start lesson 2 where we left off with lesson 1. &lt;br /&gt;
* After it&#039;s copied, open up your lesson2 folder and rename the file to lesson2.html&lt;br /&gt;
&lt;br /&gt;
* We&#039;re going to learn a few more tricks. &lt;br /&gt;
&lt;br /&gt;
* Open up lesson2.html	&lt;br /&gt;
	&lt;br /&gt;
* Change caption into a input field with a button next to it. &lt;br /&gt;
* Now when we click this button, what we want to happen is for the header color to change. &lt;br /&gt;
&lt;br /&gt;
* This is where JavaScript comes in. With JavaScript, we can do things like animation, moving things around, and we can write code which changes the page when the user clicks somewhere. &lt;br /&gt;
* Right now when you go the web page we built, it is always the same. It doesn&#039;t change over time on its own and it doesn&#039;t do anything when you click anywhere for example the avatar. &lt;br /&gt;
&lt;br /&gt;
* Copy from script file&lt;br /&gt;
&lt;br /&gt;
* Look @ in browser	&lt;br /&gt;
* Add id selectors into HTML&lt;br /&gt;
* Look @ in browser&lt;br /&gt;
* Enter in different colors in browser; click button&lt;br /&gt;
&lt;br /&gt;
* Change the background	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Lesson 3: Drag the avatar===&lt;br /&gt;
* Now let&#039;s play around with some more complicated features&lt;br /&gt;
* Open up lesson3.html&lt;br /&gt;
	&lt;br /&gt;
* Change avatar image to be your avatar&lt;br /&gt;
* Look at page in web browser&lt;br /&gt;
&lt;br /&gt;
* Avatar does move - no box around it. &lt;br /&gt;
&lt;br /&gt;
* Copy styles&lt;br /&gt;
* Copy from script file 	&lt;br /&gt;
	&lt;br /&gt;
* YUI is an open-source JavaScript library that Yahoo! has built and is used to build rich interactive web applications.&lt;br /&gt;
* YUI makes life easier for web developers. It makes things such as animation, dragging and dropping possible with only a few lines of code.&lt;br /&gt;
&lt;br /&gt;
* Let&#039;s take a look at one site that uses YUI: http://my.yahoo.com&lt;br /&gt;
	&lt;br /&gt;
* Change height / width of avatar box&lt;br /&gt;
* Move img in box&lt;br /&gt;
* Change color&lt;br /&gt;
	&lt;br /&gt;
=== Lesson 4: Fading the avatar ===&lt;br /&gt;
* Open up lesson4.html&lt;br /&gt;
* Copy script file&lt;br /&gt;
&lt;br /&gt;
* How would I change it so that the image is not fully transparent&lt;br /&gt;
* Extra credit - change link to a button&lt;br /&gt;
&lt;br /&gt;
=== Lesson 5: What&#039;s Possible? ===&lt;br /&gt;
* YUI example&lt;br /&gt;
&lt;br /&gt;
* View Source&lt;br /&gt;
* Inspect Element&lt;br /&gt;
&lt;br /&gt;
* Ways to learn:&lt;br /&gt;
** W3C&lt;br /&gt;
** Look at other sites using Firebug.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Inventory&amp;diff=24</id>
		<title>Inventory</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Inventory&amp;diff=24"/>
		<updated>2012-01-06T22:45:23Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a list of hardware procured by Kids on Computers.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: pink&amp;quot;&lt;br /&gt;
! Point of Contact&lt;br /&gt;
! Qty&lt;br /&gt;
! Type&lt;br /&gt;
! Condition&lt;br /&gt;
! Current Location&lt;br /&gt;
! Origin&lt;br /&gt;
|-&lt;br /&gt;
| Kees denHartigh&lt;br /&gt;
| 30&lt;br /&gt;
| desktops&lt;br /&gt;
| unknown at this time&lt;br /&gt;
| Albert, Canada (Edmonton area)&lt;br /&gt;
|-&lt;br /&gt;
| Robin Kimzey&lt;br /&gt;
| 2&lt;br /&gt;
| rackmountable servers&lt;br /&gt;
| both functional but very, very loud&lt;br /&gt;
| Colorado, USA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Current inventory maintained here:  [http://koc.dreamhosters.com/glpi GLPI]&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Inventory&amp;diff=23</id>
		<title>Inventory</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Inventory&amp;diff=23"/>
		<updated>2012-01-06T22:44:47Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a list of hardware procured by Kids on Computers.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: pink&amp;quot;&lt;br /&gt;
! Point of Contact&lt;br /&gt;
! Qty&lt;br /&gt;
! Type&lt;br /&gt;
! Condition&lt;br /&gt;
! Current Location&lt;br /&gt;
! Origin&lt;br /&gt;
|-&lt;br /&gt;
| Kees denHartigh&lt;br /&gt;
| 30&lt;br /&gt;
| desktops&lt;br /&gt;
| unknown at this time&lt;br /&gt;
| Albert, Canada (Edmonton area)&lt;br /&gt;
|-&lt;br /&gt;
| Robin Kimzey&lt;br /&gt;
| 2&lt;br /&gt;
| rackmountable servers&lt;br /&gt;
| both functional but very, very loud&lt;br /&gt;
| Colorado, USA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Current inventory maintained here:  [[http://koc.dreamhosters.com/glpi|GLPI]]&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Inventory&amp;diff=22</id>
		<title>Inventory</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Inventory&amp;diff=22"/>
		<updated>2012-01-06T22:44:31Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;Here is a list of hardware procured by Kids on Computers.  {| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;5&amp;quot; |- style=&amp;quot;background: pink&amp;quot; ! Point of Contact ! Qty ! Type ! Condition ! Current ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a list of hardware procured by Kids on Computers.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: pink&amp;quot;&lt;br /&gt;
! Point of Contact&lt;br /&gt;
! Qty&lt;br /&gt;
! Type&lt;br /&gt;
! Condition&lt;br /&gt;
! Current Location&lt;br /&gt;
! Origin&lt;br /&gt;
|-&lt;br /&gt;
| Kees denHartigh&lt;br /&gt;
| 30&lt;br /&gt;
| desktops&lt;br /&gt;
| unknown at this time&lt;br /&gt;
| Albert, Canada (Edmonton area)&lt;br /&gt;
|-&lt;br /&gt;
| Robin Kimzey&lt;br /&gt;
| 2&lt;br /&gt;
| rackmountable servers&lt;br /&gt;
| both functional but very, very loud&lt;br /&gt;
| Colorado, USA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Current inventory maintained here:  [[http://koc.dreamhosters.com/glpi]]&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=TripPreparation&amp;diff=21</id>
		<title>TripPreparation</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=TripPreparation&amp;diff=21"/>
		<updated>2012-01-06T22:43:23Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;==What we&amp;#039;ve learned from past trips == * It will take at least 2 visits per school to get everything set up correctly * Ideally, we would have 2 people go a few days beforehand ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What we&#039;ve learned from past trips ==&lt;br /&gt;
* It will take at least 2 visits per school to get everything set up correctly&lt;br /&gt;
* Ideally, we would have 2 people go a few days beforehand to every school and get  detailed inventory of the equipment at each school.&lt;br /&gt;
* Try to have any software we need downloaded before we leave for the trip.&lt;br /&gt;
** Don´t rely on internet connection being at the school for downloading software.&lt;br /&gt;
&lt;br /&gt;
==Preparing for a trip==&lt;br /&gt;
* Email address of the computer teacher at each school we will be going to&lt;br /&gt;
* &#039;&#039;&#039;Detailed Inventory at each school with the following information&#039;&#039;&#039;&lt;br /&gt;
** Number of computers currently at the school&lt;br /&gt;
*** For each computer - an inventory of the following:&lt;br /&gt;
**** Is it a laptop or a desktop?&lt;br /&gt;
**** Does it have a monitor?&lt;br /&gt;
**** Does it have a monitor cable?&lt;br /&gt;
**** Does it have a power cable?&lt;br /&gt;
**** Does it have a keyboard?&lt;br /&gt;
**** Does it have a mouse?&lt;br /&gt;
**** Does the computer start?&lt;br /&gt;
**** Are you able to login?&lt;br /&gt;
**** HD Y/N &lt;br /&gt;
**** HD size&lt;br /&gt;
**** RAM &lt;br /&gt;
**** RAM type&lt;br /&gt;
**** Processor(s)&lt;br /&gt;
**** Processor speed&lt;br /&gt;
**** OS&lt;br /&gt;
***** Y/N&lt;br /&gt;
***** Which OS - is edubuntu installed?&lt;br /&gt;
**** Checklist of the following applications:&lt;br /&gt;
***** gCompris educational suite (Y/N)&lt;br /&gt;
***** tuxSuite (Y/N)&lt;br /&gt;
***** OpenOffice (Y/N)&lt;br /&gt;
**** Checklist of the following files:&lt;br /&gt;
***** Khan Academy Videos&lt;br /&gt;
**** List any general issues with the computer&lt;br /&gt;
** Inventory of spare parts not being used which are currently at the school&lt;br /&gt;
** Number of computers we are adding to the school&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Items to take with us&#039;&#039;&#039;&lt;br /&gt;
** 5 USB sticks AND 5 CDs of edubuntu 8.10&lt;br /&gt;
** 5 USB sticks AND 5 CDs of edubuntu 9.04&lt;br /&gt;
** 5 USB sticks AND 5 DVDs of Ubuntu 10.10&lt;br /&gt;
** 5 USB sticks of 5 DVDs Ubuntu 11.04&lt;br /&gt;
** 5 USB sticks of the Khan Academy Videos&lt;br /&gt;
** 50 Empty CDs and DVDs&lt;br /&gt;
** 5 empty USB sticks &amp;gt;= 4GB&lt;br /&gt;
** 5 red marker pens &lt;br /&gt;
** 10 pads of stickie notes&lt;br /&gt;
** 10 pens&lt;br /&gt;
** Ethernet cables&lt;br /&gt;
** RJ45 connectors&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Template:Logistics&amp;diff=20</id>
		<title>Template:Logistics</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Template:Logistics&amp;diff=20"/>
		<updated>2012-01-06T22:43:05Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;Some logistical information for Kids on Computers.  * Preparing for a trip  * Inventory of hardware  * Donation Programs we are a part of  * Common [[...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Some logistical information for Kids on Computers.&lt;br /&gt;
&lt;br /&gt;
* [[TripPreparation|Preparing]] for a trip&lt;br /&gt;
&lt;br /&gt;
* [[Inventory]] of hardware&lt;br /&gt;
&lt;br /&gt;
* [[Donation Programs]] we are a part of&lt;br /&gt;
&lt;br /&gt;
* Common [[Grants|Donation Program and Grant Application Info]] available here&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Training:WebCourseSpanish&amp;diff=19</id>
		<title>Training:WebCourseSpanish</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Training:WebCourseSpanish&amp;diff=19"/>
		<updated>2012-01-06T22:41:17Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;== Ejercicios de programación para el Web Huajapan ==  === Requisitos=== * Desempacar los directorios de las lecciones y tenerlas disponibles en el escritorio. * Instalar Firefo...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Ejercicios de programación para el Web Huajapan ==&lt;br /&gt;
&lt;br /&gt;
=== Requisitos===&lt;br /&gt;
* Desempacar los directorios de las lecciones y tenerlas disponibles en el escritorio.&lt;br /&gt;
* Instalar Firefox y Firebug en la computadora.&lt;br /&gt;
* Abrir la página http://aumha.org/html/colorsb.htm en un navegador web.&lt;br /&gt;
* Investigar que editor de texto funciona mejor en EduUbuntu - OpenOfficeWriter.&lt;br /&gt;
&lt;br /&gt;
===Lección 0: Escoger y crear tu avatar ===&lt;br /&gt;
* Si hay acceso a internet, los estudiantes deben construir un avatar, deben nombrar el archivo como avatar.png y copiarlo al directorio de la lección Group0.&lt;br /&gt;
* Si no hay acceso a internet, los estudiantes deben escoger un avatar en el directorio Avatars. El número del avatar que ellos escojan corresponde al nombre del directorio del group en el que trabajarán. &lt;br /&gt;
&lt;br /&gt;
===Lección 1: Haciendo páginas web.===&lt;br /&gt;
====¿Qué es HTML?====&lt;br /&gt;
* HTML significa HyperText Markup Language (Lenguaje de Etiquetado de Hiper-Texto, lenguaje para crear página web).&lt;br /&gt;
* HTML es el lenguaje que los navegadores web entienden. Así como nosotros hablamos el lenguaje Español o Inglés, los navegadores web hablan HTML.&lt;br /&gt;
* A los documentos HTML generalmente se les llama páginas web. El navegador web obtiene las páginas web de los servidores de páginas web gracias a la internet pueden estar ubicados en cualquier parte del mundo.&lt;br /&gt;
* Por lo tanto, cuando tú visitas un sitio web con un navegador, tu estás viendo una página web.&lt;br /&gt;
* Hoy aprenderemos como crear nuestras propias páginas web y también aprenderemos algunos trucos fáciles.&lt;br /&gt;
* ¿Cuantos de ustedes han creado páginas web?&lt;br /&gt;
* ¡Ahora crearemos nuestra primera página web!&lt;br /&gt;
&lt;br /&gt;
====¡Hagamos nuestra primera página web!====&lt;br /&gt;
* Abrir lesson1.html&lt;br /&gt;
* DOCTYPE - Declaración del tipo de documento.&lt;br /&gt;
* html&lt;br /&gt;
* Un documento HTML tiene un encabezado (HEAD) y un cuerpo (BODY).&lt;br /&gt;
** head&lt;br /&gt;
** title&lt;br /&gt;
** body&lt;br /&gt;
* Ver una página en un navegador (¿ver el código HTML?)&lt;br /&gt;
* Ejemplo: Bold.&lt;br /&gt;
* H1&lt;br /&gt;
* Párrafo.&lt;br /&gt;
* ¿Alguien puede identificar el patrón en la manera en que se hacen las anotaciones HTML?&lt;br /&gt;
** Así como en español las frases se inician con una letra mayúscula y se terminan con un punto final, también hay un patrón que se usa para escribir etiquetas HTML.&lt;br /&gt;
** Cada etiqueta empieza con el signo menor que (&amp;lt;), el nombre de la etiqueta y un signo mayor que (&amp;gt;).&lt;br /&gt;
** Después viene el contenido entre la etiqueta que abre y la etiqueta que cierra.&lt;br /&gt;
** Después viene la etiqueta que cierra, que está formada por un signo menor que (&amp;lt;), una diagonal (/), el nombre de la etiqueta y por último un signo menor que (&amp;gt;).&lt;br /&gt;
*** Las etiquetas aplican al texto que está entre ellas, es decir, al contenido entre la etiqueta que abre y la etiqueta que cierra.&lt;br /&gt;
*** Si recuerdan, HTML significa lenguaje de anotación de hiper-texto. Las etiquetas son la razón por la cual se le conoce de esa manera. Las etiquetas delimitan cierto contenido de tal manera que le asigna significado y representación al contenido de nuestras páginas web.&lt;br /&gt;
&lt;br /&gt;
** Agregar una imagen.&lt;br /&gt;
** Agregar una liga.&lt;br /&gt;
** ¿Quién puede adivinar como se puede create texto cursivo y enfatizado?&lt;br /&gt;
&lt;br /&gt;
==== CSS ====&lt;br /&gt;
* Existe una manera de agregar estilo a una página. Se le conoce como CSS.&lt;br /&gt;
* Cascading Style Sheets (CSS) o Hojas de Estilo en Cascada, es un lenguaje de hojas de estilo que se usa para describir la manera que un documento HTML se verá y el formato que tendrá.&lt;br /&gt;
* Copiar el archivo Script.&lt;br /&gt;
* Cambiar colores.&lt;br /&gt;
** http://aumha.org/html/colorsb.htm&lt;br /&gt;
&lt;br /&gt;
* Algunos ejemplos:&lt;br /&gt;
** ¿Cuales son algunos de tus sitios web favoritos?&lt;br /&gt;
** http://kids.yahoo.com/&lt;br /&gt;
** http://www.girlstart.com/&lt;br /&gt;
** http://www.kids.gov/&lt;br /&gt;
** http://wikipedia.org/&lt;br /&gt;
** http://flickr.com&lt;br /&gt;
** http://mail.yahoo.com&lt;br /&gt;
&lt;br /&gt;
* Ahora que cada uno de ustedes han creado una página web, ya se pueden nombrar desarrolladores web. :-D&lt;br /&gt;
&lt;br /&gt;
=== Lección 2:Una probadita de JavaScript y YUI. ===&lt;br /&gt;
&lt;br /&gt;
* Copiemos el archivo leccion1 al directorio leccion2. Tomaremos la leccion1 como base para iniciar la leccion2.&lt;br /&gt;
* Una vez que ya se copio, abrir el directorio leccion2 y nombraremos el archivo leccion1 como leccion2.html&lt;br /&gt;
* Aprenderemos algunos trucos nuevos.&lt;br /&gt;
* Abrir leccion2.html&lt;br /&gt;
* Cambio el título en un campo de entrada con un botón a su lado.&lt;br /&gt;
* Ahora, cuando hacemos un clic con el botón, lo que queremos pasar es que el color cambia.&lt;br /&gt;
&lt;br /&gt;
* Aquí es donde se requieren JavaScript. Con JavaScript, podemos hacer cosas como la animación, moviendo cosas de sitio, y podemos escribir código que cambia la página cuando el usuario hace clic en alguna parte.&lt;br /&gt;
* Ahora cuando vaya a la página web que hemos construido, es siempre la misma. No cambia por sí mismo y no hace nada cuando hacemos clic en cualquier lugar. Por ejemplo, no hace nada cuando se haga clic en el avatar. &lt;br /&gt;
&lt;br /&gt;
* Copia el archivo de Javascript&lt;br /&gt;
&lt;br /&gt;
* Mira su sitio en un navegador	&lt;br /&gt;
* Agrega nombres de Identificación con el atributo id en el HTML&lt;br /&gt;
* Mira su sitio en un navegador	&lt;br /&gt;
* Introduzca colores diferentes en el navegador; haga clic en el botón&lt;br /&gt;
&lt;br /&gt;
* Cambiar el fondo&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ===Lesson 3: Drag the avatar===&lt;br /&gt;
* Now let&#039;s play around with some more complicated features&lt;br /&gt;
* Open up lesson3.html&lt;br /&gt;
	&lt;br /&gt;
* Change avatar image to be your avatar&lt;br /&gt;
* Look at page in web browser&lt;br /&gt;
&lt;br /&gt;
* Avatar does move - no box around it. &lt;br /&gt;
&lt;br /&gt;
* Copy styles&lt;br /&gt;
* Copy from script file 	&lt;br /&gt;
	&lt;br /&gt;
* YUI es un código abierto de JavaScript que Yahoo ha construido. YUI se utiliza para crear aplicaciones ricas y interactivas.&lt;br /&gt;
* YUI facilita la vida de los desarrolladores web. Con YUI, las cosas como la animación y arrastrar y soltar son posible con sólo unas pocas líneas de código.&lt;br /&gt;
&lt;br /&gt;
* Vamos a examinar un sitio que utiliza YUI: http://my.yahoo.com&lt;br /&gt;
	&lt;br /&gt;
* Cambiar la altura y anchura de la caja del avatar&lt;br /&gt;
* cambiar la lugar de la imagen  en la casilla&lt;br /&gt;
* Cambiar el color --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Lección 3: Arrastrar el avatar===&lt;br /&gt;
* Ahora vamos a jugar con características más complicadas&lt;br /&gt;
* Abre lesson3.html&lt;br /&gt;
	&lt;br /&gt;
* Cambia la imágen del avatar a tu avatar&lt;br /&gt;
* Mirala página en el navegador&lt;br /&gt;
&lt;br /&gt;
* El avatar se mueve - No hay reciadros a su alrededor. &lt;br /&gt;
&lt;br /&gt;
* Copiar estilos&lt;br /&gt;
* Copiar desde el script&lt;br /&gt;
	&lt;br /&gt;
* YUI es una librería JavaScript open-source de Yahoo! Se construyó y se utiliza para crear web ricas en interación.&lt;br /&gt;
* YUI hace la vida más fácil para los desarrolladores web. Eso hace que cosas como las animaciones, arrastrar y soltar sean posibles solo con unas cuantas líneas de código.&lt;br /&gt;
&lt;br /&gt;
* Demos un vistazo a un sitio que usa YUI: http://my.yahoo.com&lt;br /&gt;
	&lt;br /&gt;
* Cambiar la altura / ancho del cuadro del avatar&lt;br /&gt;
* Mover la imágen dentro del cuadro&lt;br /&gt;
* Cambiar el color&lt;br /&gt;
	&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
=== Lesson 4: Fading the avatar ===&lt;br /&gt;
* Open up lesson4.html&lt;br /&gt;
* Copy script file&lt;br /&gt;
&lt;br /&gt;
* How would I change it so that the image is not fully transparent&lt;br /&gt;
* Extra credit - change link to a button&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lección 4: Desvanecimiento del avatar ===&lt;br /&gt;
* Abre lesson4.html&lt;br /&gt;
* Copia el script&lt;br /&gt;
&lt;br /&gt;
* Cómo podría modificarlo para que la imágen no este completamente transparente&lt;br /&gt;
* Puntos extra - cambiar el enlace a un botón&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
=== Lesson 5: What&#039;s Possible? ===&lt;br /&gt;
* YUI example&lt;br /&gt;
&lt;br /&gt;
* View Source&lt;br /&gt;
* Inspect Element&lt;br /&gt;
&lt;br /&gt;
* Ways to learn:&lt;br /&gt;
** W3C&lt;br /&gt;
** Look at other sites using Firebug.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Lección 5: ¿Qué más es posible? ===&lt;br /&gt;
* Ejemplo YUI &lt;br /&gt;
&lt;br /&gt;
* Ver el código fuente&lt;br /&gt;
* Inspeccionar un elemento&lt;br /&gt;
&lt;br /&gt;
* Formas de aprender:&lt;br /&gt;
** W3C&lt;br /&gt;
** Ver otros sitios usando Firebug.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Main_Page&amp;diff=18</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Main_Page&amp;diff=18"/>
		<updated>2012-01-06T22:39:47Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Kids on Computers is a Colorado Nonprofit! ==&lt;br /&gt;
&lt;br /&gt;
Kids on Computers is a Colorado nonprofit organization!&lt;br /&gt;
&lt;br /&gt;
We are a federal 501(c)(3) tax-exempt organization. Donations you make to Kids on Computers are tax-deductible to the extent permitted by law.  (But, like they all say, you should check with your tax account.)&lt;br /&gt;
&lt;br /&gt;
Please donate! We are happy to provide you a receipt for your donation upon request.&lt;br /&gt;
&lt;br /&gt;
* How to [[donate]]&lt;br /&gt;
* How to [[volunteer]]&lt;br /&gt;
* Our [[projects | school labs]]&lt;br /&gt;
* [[Grants]]&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants:_YEF_Grant&amp;diff=17</id>
		<title>Grants: YEF Grant</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants:_YEF_Grant&amp;diff=17"/>
		<updated>2012-01-06T22:38:58Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;== YEF Grant Content ==  * &amp;#039;&amp;#039;&amp;#039;Mission Statement&amp;#039;&amp;#039;&amp;#039;  ** We are a 501(c)(3) nonprofit organization working to provide free computers and free and open source software to disadvanta...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== YEF Grant Content ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mission Statement&#039;&#039;&#039; &lt;br /&gt;
** We are a 501(c)(3) nonprofit organization working to provide free computers and free and open source software to disadvantaged kids and schools open to the public. Our mission is to set up computer labs in schools around the world where kids have no other access to technology. We use donated, used computers, open source software and volunteers. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;We bring in computers, set them up, provide training and work with local volunteers to provide long term support. We encourage schools to work with the broader community in order to sustain the lab for the future. We ask schools to work with parents in supporting their children&#039;s education and ask that they solicit donations from local businesses.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Our computers come from individuals, other nonprofit organizations, as well as companies such as banks and computer companies. Our volunteers come from many different places, all professionals interested in bringing technology, open source software and education to children. Our schools are very poor schools but have very engaged teachers and parents willing to work with us to give their kids opportunities.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Brief History of Organization&#039;&#039;&#039; &lt;br /&gt;
** Kids on Computers was started in 2008 with the goal of setting up one computer lab a year in schools or areas where kids do not have access to technology. Thanks to our dedicated volunteers and donors, we have far surpassed this goal. In the last year and a half alone, we have set up six computer labs in schools in Mexico and Argentina. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;These labs have been successful beyond our expectations. &amp;lt;br/&amp;gt; The schools, teachers, parents and students have really taken advantage of the opportunity of having technology at hand. &amp;lt;br/&amp;gt;18 de Marzo, a school we set up in June 2009, in Mexico, collects money from parents to pay a computer teacher. Santo Domingo, a girls&#039; school works with local businesses to get internet. &amp;lt;br/&amp;gt;Another school, CAM, a school for kids with disabilities, has internet donated by a parent of a former student, and enables the parents to come in during the evenings to research their kids&#039; disabilities and assistance available. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;We have also worked with organizations such as FedEx, Partimus, System76 and Caja Popular Mexicana to coordinate computer donations and logistics. &amp;lt;br/&amp;gt;This year we are working with our existing schools while setting up new labs in Mexico, Zambia, and India.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Champion Statement of Support&#039;&#039;&#039;&lt;br /&gt;
** Kids on Computers is a nonprofit organization which strives to give children in developing countries an opportunity to break out of the poverty of their surroundings. The organization has proven itself successful in creating labs in developing countries and not only inspiring the students, but also the communities of these students. &amp;lt;br/&amp;gt;By establishing computer labs with internet in remote developing regions, students, their parents, and their communities are given access to the outside world so they may educate themselves and realize new dreams. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Members take time outside of their day jobs to set up labs and coordinate logistics in remote countries. &amp;lt;br/&amp;gt;I am very inspired by the work they do. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Project Information ===&lt;br /&gt;
* 1. Please indicate which focus area is most associated with your project.	&lt;br /&gt;
** Education &amp;amp; Youth&lt;br /&gt;
** Community Building &amp;amp; Families&lt;br /&gt;
&lt;br /&gt;
* 2. How much money are you requesting? (Up to $5,000)&lt;br /&gt;
** 5000.00&lt;br /&gt;
&lt;br /&gt;
* 3. What project are you requesting funding for?&lt;br /&gt;
** Expansion of KOC into India&lt;br /&gt;
&lt;br /&gt;
* 4. What is this project&#039;s budget?&lt;br /&gt;
** 17,500&lt;br /&gt;
&lt;br /&gt;
* 5. What is the organization&#039;s budget?&lt;br /&gt;
** 2000&lt;br /&gt;
&lt;br /&gt;
* 6. How many people will be impacted by YEF funding of this project?&lt;br /&gt;
** 1000&lt;br /&gt;
&lt;br /&gt;
* 7. What will this impact look like? (200 word limit)&lt;br /&gt;
** The labs we&#039;ve set up are making a huge impact on the community. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt; At the 18 de Marzo school, the lab has made a huge difference. Because of the lab, the local community also built a library, a room to house gym equipment, and hired a school psychologist. The school has gone from being one of the poorest to one where everyone wants to send their kids. There are now plans for a high school nearby so that kids can continue their education. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;At CAM, a nearby school for kids with disabilities, we set up a lab that impacted the whole community. Parents also come in to research their kids&#039; disabilities and government aid programs. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;With money from the YEF grant, we would be able to impact three additional schools and their respective communities in the rural areas of the Huajuapan District. One of these schools, Escuela Primaria Manuel Gonzalez Gatica, is a one room school in a small rural town. Most of the town doesn&#039;t have electricity, phone lines, internet, or any modern conveniences. The other two schools are in similar situations. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Each school serves approximately 50-300 kids plus their parents and extended community. &lt;br /&gt;
&lt;br /&gt;
* 8. What geographic area will be served by this project?&lt;br /&gt;
** Huajuapan, Oaxaca, Mexico&lt;br /&gt;
&lt;br /&gt;
* 9. Specifically, for what would YEF funding be used in this project? (200 word limit)&lt;br /&gt;
** YEF funding would be used to go towards shipping used computers to the new schools and buying monitors to set up the three new labs. The money would also be used to send replacement parts to existing labs, tables, chairs, locking equipment, and any tools necessary to set up the new labs or maintain the existing ones.&lt;br /&gt;
&lt;br /&gt;
* 10. What specific community need are you addressing, and how does the project address it? (Be specific - 400 word limit)&lt;br /&gt;
** Many of the kids in this region get very little education. They have no access to technology in elementary school and many do not continue studying after elementary school. At most, 47 out of 100 students finish primary school while only 23% partly attend high school. We hope to help the kids (and their parents!) acquire more skills for learning, for jobs, and perhaps even inspire some to continue their education through high school. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Our goal in setting up these labs is to give disadvantaged kids with no access to technology and their communities a true opportunity at a modern education. The labs would be in schools and if at all possible, they would be open to parents and communities in the evenings.&lt;br /&gt;
&lt;br /&gt;
* 11. If there is a selection process for the people who benefit from your services, what is that process? In other words, what determines who is served? (200 word limit)&lt;br /&gt;
** In order for a school to be selected for a lab, there must be someone local willing to handle the logistics for setting up the lab. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;We need someone local to coordinate volunteers, supplies, schedules, research options for internet, and infrastructure. The school, the principal and the parents must also be heavily engaged. In addition, we have technical requirements including, but not limited to, a room that locks and stays cool enough to have a room of computers.&lt;br /&gt;
&lt;br /&gt;
* 12. What are your main goals, metrics for measuring each of the goals and how will you determine if you have succeeded in meeting those goals? If possible, please provide data on how you have performed against those goals in the past. (200 word limit)&lt;br /&gt;
** Our goals are to: &lt;br /&gt;
*** Set up three computer labs in the Huajuapan district. The five schools we have set up in the past have met our basic goal of a lab. &lt;br /&gt;
*** Provide training for the students. At several schools we&#039;ve set up, training is provided for the students by volunteers. &lt;br /&gt;
*** Get internet access for all of the schools. Three of the five schools we&#039;ve set up have internet now, one is about to, and one doesn&#039;t. &lt;br /&gt;
*** Another goal is to get parents and the community involved. We&#039;ve been successful in different ways with this goal. In one school, parents chip in to pay for a computer teacher. In another, a local business provides the internet. &lt;br /&gt;
*** A final goal is sustainability. We do this by building out the local technical volunteers and keeping in contact with them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 13. What other sources of funding are you pursuing for this project, and for other projects you are involved with? (200 word limit)&lt;br /&gt;
** We look to several sources for funding and support: &lt;br /&gt;
*** Monetary donations from individuals. &lt;br /&gt;
*** Donated computers from individuals with help from computer companies. &lt;br /&gt;
*** Donations from US companies and companies local to the schools where we are building the labs. &lt;br /&gt;
*** Our volunteers donate their time and pay for their own travel. &lt;br /&gt;
*** Other grants. For example, we received a grant from Fed Ex in 2009 to ship computers to one school. &lt;br /&gt;
&lt;br /&gt;
* 14. How do you create long-term benefits that go beyond the immediate provision of services, for instance through enabling self-sufficiency of those served when possible? (200 word limit)&lt;br /&gt;
** We strive to make the communities self-sufficient. We work very closely with local open source and technical experts, school principals, teachers, and local companies. We have local linux experts who volunteer their time to maintain the labs. We&#039;ve gotten donations of computers from local businesses, such as the Caja Popular Mexicana bank as well as computer repair services from other businesses. All of our schools are self-sufficient now. We continue to try to build on that and enable them to do more to further their students&#039; education.&lt;br /&gt;
&lt;br /&gt;
* 15. Regarding this specific project in the proposal, what other organizations are working on projects related to yours? Will you be collaborating with them? Why or why not? (200 word limit)&lt;br /&gt;
** We&#039;ve collaborated with several other organizations and nonprofits such as Partimus, System 76, and Zareason. Partimus helps set up labs in the United States, but not in developing countries. We&#039;ve worked with them on receiving and fixing donated equipment, installing software, and sharing best practice for setting up labs.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants:_YEF_Grant_201106&amp;diff=16</id>
		<title>Grants: YEF Grant 201106</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants:_YEF_Grant_201106&amp;diff=16"/>
		<updated>2012-01-06T22:38:32Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;== YEF Grant Content ==  * &amp;#039;&amp;#039;&amp;#039;Mission Statement&amp;#039;&amp;#039;&amp;#039;  ** We are a 501(c)(3) nonprofit organization working to provide free computers and free and open source software to disadvanta...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== YEF Grant Content ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mission Statement&#039;&#039;&#039; &lt;br /&gt;
** We are a 501(c)(3) nonprofit organization working to provide free computers and free and open source software to disadvantaged kids and schools open to the public. Our mission is to set up computer labs in schools around the world where kids have no other access to technology. We use donated, used computers, open source software and volunteers. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;We bring in computers, set them up, provide training and work with local volunteers to provide long term support. We encourage schools to work with the broader community in order to sustain the lab for the future. We ask schools to work with parents in supporting their children&#039;s education and ask that they solicit donations from local businesses.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Our computers come from individuals, other nonprofit organizations, as well as companies such as banks and computer companies. Our volunteers come from many different places, all professionals interested in bringing technology, open source software and education to children. Our schools are very poor schools but have very engaged teachers and parents willing to work with us to give their kids opportunities.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Brief History of Organization&#039;&#039;&#039; &lt;br /&gt;
**Kids on Computers was started in 2008 with the goal of setting up one computer lab a year in schools or areas where kids do not have access to technology. Thanks to our dedicated volunteers and donors, we have far surpassed this goal. In the last year and a half alone, we have set up six computer labs in schools in Mexico and Argentina. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;These labs have been successful beyond our expectations. 18 de Marzo, a school we set up in June 2009, in Mexico, initially collected money from parents to pay a computer teacher. After proving the lab&#039;s success, the government now provides funding for the computer teacher. Santo Domingo, a girls&#039; school, works with local businesses to get internet. Another school, CAM, a school for kids with disabilities, has internet donated by a parent of a former student, and enables the parents to come in during the evenings to research their kids&#039; disabilities and assistance available. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;We have also worked with organizations such as FedEx, Partimus, System76 and Caja Popular Mexicana to coordinate computer donations and logistics. This year, we upgraded 2 schools and set up 2 schools in Mexico, and are now setting up new labs in India and Zambia.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Champion Statement of Support&#039;&#039;&#039;&lt;br /&gt;
** Kids on Computers is a nonprofit organization which strives to give children in developing countries an opportunity to break out of the poverty of their surroundings. The organization has proven itself successful in creating labs in developing countries and not only inspiring the students, but also the communities of these students. &amp;lt;br/&amp;gt;By establishing computer labs with internet in remote developing regions, students, their parents, and their communities are given access to the outside world so they may educate themselves and realize new dreams. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Members take time outside of their day jobs to set up labs and coordinate logistics in remote countries. I recently heard about their trip to Huajuapan where they upgraded labs in two schools and installed labs in two other schools.  It is amazing to see what the group is able to accomplish with their limited resources.  I am very inspired by the work they do and know funding them would allow them to continue to expand their efforts into India and other developing countries.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Project Information ===&lt;br /&gt;
* 1. Please indicate which focus area is most associated with your project.	&lt;br /&gt;
** Education &amp;amp; Youth&lt;br /&gt;
** Community Building &amp;amp; Families&lt;br /&gt;
&lt;br /&gt;
* 2. How much money are you requesting? (Up to $5,000)&lt;br /&gt;
** 5000.00&lt;br /&gt;
&lt;br /&gt;
* 3. What project are you requesting funding for?&lt;br /&gt;
** Expansion of KOC into India&lt;br /&gt;
&lt;br /&gt;
* 4. What is this project&#039;s budget?&lt;br /&gt;
** 17,500&lt;br /&gt;
&lt;br /&gt;
* 5. What is the organization&#039;s budget?&lt;br /&gt;
** 2,000&lt;br /&gt;
&lt;br /&gt;
* 6. How many people will be impacted by YEF funding of this project?&lt;br /&gt;
** 1000&lt;br /&gt;
&lt;br /&gt;
* 7. What will this impact look like? (200 word limit)&lt;br /&gt;
** The labs we&#039;ve set up in Huajuapan de Leon, Mexico have made a huge impact on the community. &amp;lt;br/&amp;gt;We&#039;ve made a difference in the communities and lives of children around 5 schools in the area. At the 18 de Marzo school, because of the lab, the local community also built a library, a room to house gym equipment, and hired a school psychologist. Another school, Escuela Primaria Manuel Gonzalez Gatica, is a one room school in a small rural town. Most of the town doesn&#039;t have electricity, phone lines, internet, or any modern conveniences. Each school serves approximately 50-300 kids plus their parents and extended community. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;We believe we can expand this impact into other countries like India. With money from the YEF grant, we would be able to set up a lab in a rural region of India where kids are currently not given the opportunity to learn via computers. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Four of our current community members have family in India. We believe that we can prove our model works in other countries by expanding to India with their help and the help of their families. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 8. What geographic area will be served by this project?&lt;br /&gt;
**  We are planning to establish labs in the rural regions of Kerala, India and Assam, India where our members have family that can help with local logistics.&lt;br /&gt;
&lt;br /&gt;
* 9. Specifically, for what would YEF funding be used in this project? (200 word limit)&lt;br /&gt;
** YEF funding would be used to go towards buying inexpensive netbooks ($250) for our first computer lab in a school in India. &lt;br /&gt;
&lt;br /&gt;
* 10. What specific community need are you addressing, and how does the project address it? (Be specific - 400 word limit)&lt;br /&gt;
** Many of the kids in this region get very little education. They have no access to technology in elementary school. In India 25% of the population is still illiterate; only 15% of Indian students reach high school, and just 7% graduate. As of 2008, India&#039;s post-secondary high schools offer only enough seats for 7% of India&#039;s college-age population. [see: https://secure.wikimedia.org/wikipedia/en/wiki/Education_in_India] &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Our goal in setting up these labs is to give disadvantaged kids with no access to technology and their communities a true opportunity at a modern education. This new lab in India will be in a school and if at all possible, it will be open to parents and communities in the evenings.&lt;br /&gt;
&lt;br /&gt;
* 11. If there is a selection process for the people who benefit from your services, what is that process? In other words, what determines who is served? (200 word limit)&lt;br /&gt;
** In order for a school to be selected for a lab, there must be someone local willing to handle the logistics for setting up the lab. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;We need someone local to coordinate volunteers, supplies, schedules, research options for internet, and infrastructure. The school, the principal and the parents must also be heavily engaged. In addition, we have technical requirements including, but not limited to, a room that locks and stays cool enough to have a room of computers.&lt;br /&gt;
&lt;br /&gt;
* 12. What are your main goals, metrics for measuring each of the goals and how will you determine if you have succeeded in meeting those goals? If possible, please provide data on how you have performed against those goals in the past. (200 word limit)&lt;br /&gt;
** Our goals are to: &lt;br /&gt;
*** Expand our efforts to another country India.&lt;br /&gt;
*** Set up a computer labs in a school in India.&lt;br /&gt;
*** Provide training for the students and teachers. Often at the schools we work with, the teachers have never used computers either. We provide training while we are there and set them up with local volunteers.&lt;br /&gt;
*** Get internet access for all of the schools. Four of the six schools we&#039;ve set up have internet now, one is about to, and one doesn&#039;t. We have provided internet by working with different organizations from parent organizations to local companies.&lt;br /&gt;
*** Another goal is to get parents and the community involved. We&#039;ve been successful in different ways with this goal. In one school, parents chip in to pay for a computer teacher. In another, a local business provides the internet. &lt;br /&gt;
*** A final goal is sustainability. We do this by building out the local technical volunteers and keeping in contact with them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 13. What other sources of funding are you pursuing for this project, and for other projects you are involved with? (200 word limit)&lt;br /&gt;
** We look to several sources for funding and support: &lt;br /&gt;
*** Monetary donations from individuals. &lt;br /&gt;
*** Donated computers from individuals with help from computer companies. &lt;br /&gt;
*** Donations from US companies and companies local to the schools where we are building the labs. &lt;br /&gt;
*** Our volunteers donate their time and pay for their own travel. &lt;br /&gt;
*** Other grants. For example, we received a grant from Fed Ex in 2009 to ship computers to one school. &lt;br /&gt;
&lt;br /&gt;
* 14. How do you create long-term benefits that go beyond the immediate provision of services, for instance through enabling self-sufficiency of those served when possible? (200 word limit)&lt;br /&gt;
** We strive to make the communities self-sufficient. We work very closely with local open source and technical experts, school principals, teachers, and local companies. We have local Linux experts who volunteer their time to maintain the labs. We&#039;ve gotten donations of computers from local businesses, such as the Caja Popular Mexicana bank as well as computer repair services from other businesses. All of our schools are self-sufficient now. We continue to try to build on that and enable them to do more to further their students&#039; education.&lt;br /&gt;
&lt;br /&gt;
* 15. Regarding this specific project in the proposal, what other organizations are working on projects related to yours? Will you be collaborating with them? Why or why not? (200 word limit)&lt;br /&gt;
** We&#039;ve collaborated with several other organizations and nonprofits such as Partimus, System 76, and Zareason. Partimus helps set up labs in the United States, but not in developing countries. We&#039;ve worked with them on receiving and fixing donated equipment, installing software, and sharing best practice for setting up labs.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants&amp;diff=15</id>
		<title>Grants</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants&amp;diff=15"/>
		<updated>2012-01-06T22:38:10Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== General Info ==&lt;br /&gt;
Info that can be used for all grants&lt;br /&gt;
&lt;br /&gt;
* [[GrantsOrgInfo|Organization Info]]&lt;br /&gt;
* [[Grants:_Bios]]&lt;br /&gt;
&lt;br /&gt;
== Specific Grants ==&lt;br /&gt;
Information for specific grants we&#039;ve applied for&lt;br /&gt;
* YEF Grant&lt;br /&gt;
** [[Grants:_YEF_Grant_201106|Reapplied June 2011]] - received!!&lt;br /&gt;
** [[Grants: YEF Grant|Initially applied Feb 2011]] - denied&lt;br /&gt;
&lt;br /&gt;
* Genera MX Grant&lt;br /&gt;
&lt;br /&gt;
* FedEx Grant&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants&amp;diff=14</id>
		<title>Grants</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants&amp;diff=14"/>
		<updated>2012-01-06T22:37:22Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== General Info ==&lt;br /&gt;
Info that can be used for all grants&lt;br /&gt;
&lt;br /&gt;
* [[GrantsOrgInfo|Organization Info]]&lt;br /&gt;
* [[Bios]]&lt;br /&gt;
&lt;br /&gt;
== Specific Grants ==&lt;br /&gt;
Information for specific grants we&#039;ve applied for&lt;br /&gt;
* YEF Grant&lt;br /&gt;
** [[Grants:_YEF_Grant_201106|Reapplied June 2011]] - received!!&lt;br /&gt;
** [[Grants: YEF Grant|Initially applied Feb 2011]] - denied&lt;br /&gt;
&lt;br /&gt;
* Genera MX Grant&lt;br /&gt;
&lt;br /&gt;
* FedEx Grant&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=GrantsOrgInfo&amp;diff=13</id>
		<title>GrantsOrgInfo</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=GrantsOrgInfo&amp;diff=13"/>
		<updated>2012-01-06T22:36:53Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;* &amp;#039;&amp;#039;&amp;#039;Organization Name:&amp;#039;&amp;#039;&amp;#039; Kids On Computers * &amp;#039;&amp;#039;&amp;#039;Organization EIN:&amp;#039;&amp;#039;&amp;#039; 26-4329360 * &amp;#039;&amp;#039;&amp;#039;Website:&amp;#039;&amp;#039;&amp;#039; http://kidsoncomputers.org * &amp;#039;&amp;#039;&amp;#039;Address:&amp;#039;&amp;#039;&amp;#039; Ask Stormy * &amp;#039;&amp;#039;&amp;#039;Primary Contact:&amp;#039;&amp;#039;&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* &#039;&#039;&#039;Organization Name:&#039;&#039;&#039; Kids On Computers&lt;br /&gt;
* &#039;&#039;&#039;Organization EIN:&#039;&#039;&#039; 26-4329360&lt;br /&gt;
* &#039;&#039;&#039;Website:&#039;&#039;&#039; http://kidsoncomputers.org&lt;br /&gt;
* &#039;&#039;&#039;Address:&#039;&#039;&#039; Ask Stormy&lt;br /&gt;
* &#039;&#039;&#039;Primary Contact:&#039;&#039;&#039;&lt;br /&gt;
** &#039;&#039;&#039;Name:&#039;&#039;&#039; Robin &amp;quot;Stormy&amp;quot; Peters&lt;br /&gt;
** &#039;&#039;&#039;Title:&#039;&#039;&#039; President&lt;br /&gt;
* &#039;&#039;&#039;Phone:&#039;&#039;&#039; Ask Stormy&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants&amp;diff=12</id>
		<title>Grants</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants&amp;diff=12"/>
		<updated>2012-01-06T22:31:06Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;== General Info == Info that can be used for all grants  * Organization Info * Bios  == Specific Grants == Information for specific grants we&amp;#039;ve ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== General Info ==&lt;br /&gt;
Info that can be used for all grants&lt;br /&gt;
&lt;br /&gt;
* [[GrantsOrgInfo|Organization Info]]&lt;br /&gt;
* [[GrantsBios|Bios]]&lt;br /&gt;
&lt;br /&gt;
== Specific Grants ==&lt;br /&gt;
Information for specific grants we&#039;ve applied for&lt;br /&gt;
* YEF Grant&lt;br /&gt;
** [[Grants:_YEF_Grant_201106|Reapplied June 2011]] - received!!&lt;br /&gt;
** [[Grants: YEF Grant|Initially applied Feb 2011]] - denied&lt;br /&gt;
&lt;br /&gt;
* Genera MX Grant&lt;br /&gt;
&lt;br /&gt;
* FedEx Grant&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Donation_Programs&amp;diff=11</id>
		<title>Donation Programs</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Donation_Programs&amp;diff=11"/>
		<updated>2012-01-06T22:30:12Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;Here is the list of Donation Programs that we are a part of and a link to the program.  * [http://www.paypal.com PayPal]  * [http://www.zazzle.com Zazzle]  * [http://www1.network...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is the list of Donation Programs that we are a part of and a link to the program.&lt;br /&gt;
&lt;br /&gt;
* [http://www.paypal.com PayPal]&lt;br /&gt;
&lt;br /&gt;
* [http://www.zazzle.com Zazzle]&lt;br /&gt;
&lt;br /&gt;
* [http://www1.networkforgood.org/ NetworkForGood]&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Volunteer&amp;diff=9</id>
		<title>Volunteer</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Volunteer&amp;diff=9"/>
		<updated>2012-01-06T22:28:15Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;Our organization is run entirely by volunteers!  * Meet our current volunteers. (Need a page with the list - an outdated one is on our website.) * Check out ways you can help. (N...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Our organization is run entirely by volunteers!&lt;br /&gt;
&lt;br /&gt;
* Meet our current volunteers. (Need a page with the list - an outdated one is on our website.)&lt;br /&gt;
* Check out ways you can help. (Need a page with ways to help.)&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=7</id>
		<title>Grants: Bios</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=7"/>
		<updated>2012-01-06T22:15:58Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&#039;&#039;&#039;Robin &amp;quot;Stormy&amp;quot; Peters&#039;&#039;&#039; - &#039;&#039;Director, President&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Robin &amp;quot;Stormy&amp;quot; Peters is an information technology industry analyst and prominent free and open source software (FOSS) advocate, promoting business use of FOSS. She advocates as a consultant and conference speaker. She co-founded, and was later appointed as executive director of the GNOME Foundation. She is currently head of Developer Engagement at Mozilla. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Ragavan Srinivasan&#039;&#039;&#039; - &#039;&#039;Director, Vice President&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Ragavan Srinivasan works as a Product Manager at Mozilla building a better web. He manages Mozilla&#039;s Services initiatives including the Firefox Sync project. Prior to Mozilla, Ragavan worked on various open source initiatives at VMware Inc. and Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Robin Kimzey&#039;&#039;&#039; - &#039;&#039;Director, Secretary&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Robin Kimzey is currently working as a technology technician at a K-12 public school in Colorado Springs, CO. Before that he was a staff consultant at a Denver based consulting corporation. &lt;br /&gt;
&lt;br /&gt;
Robin has a Bachelor&#039;s of Science in Computer Science degree that he received from Hawaii Pacific University in 1999 and is currently finishing up a Master&#039;s of Engineering in Information Assurance degree at the University of Colorado at Colorado Springs. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Mary &amp;quot;Serena&amp;quot; Thomas Robb&#039;&#039;&#039; - &#039;&#039;Director, Treasurer&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Serena Robb invests a lot of her time in the non-profit world. She helped start Kids On Computers, and is a board member for Steppin&#039; Out, Inc, a non-profit that assists youth who have emancipated while in foster care. She is also an advocate, through CASA, Inc., for children who are in the court system due to neglect and abuse. Prior to this, she was an engineering manager at Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Kees DenHartigh&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Kees DenHartigh worked as a Systems and Network Administrator and Supervisor at the University of Alberta Electrical and Computer Engineering Department. He has been a Linux and Open Source advocate since 1996 and has spent many years building Linux Computer labs. &lt;br /&gt;
&lt;br /&gt;
He is also active in his own community and other international organizations with IT management and social media as a volunteer. &lt;br /&gt;
&lt;br /&gt;
After retiring in 2009 he made 2 trips to Huajuapan Mexico to assist Hermes and Thomas with the 18 deMarzo lab. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Belinda Lopez&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Belinda Lopez has fifteen years of experience in creating innovative learning environments. From pre-school settings to the highest levels of corporate management and even astronauts, her goal is to use technology in new and innovative ways to make learning an enjoyable experience for both learners and teachers. She is currently responsible for education at Canonical, Ltd and is always looking to expand her knowledge of the Open Source world and particularly Ubuntu Linux. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Alex Mayorga Adame&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Alex Mayorga Adame works as a consultant with Softtek as an open source subject matter expert for the world&#039;s largest financial services network, Citi. Previously he worked in IT at UNID Zacatecas. &lt;br /&gt;
&lt;br /&gt;
He received a BSc in Information Systems Engineering at ITESM Campus Zacatecas.   &lt;br /&gt;
&lt;br /&gt;
He is interested in the transformation power of open source technologies and as a hobby, he tests development builds and contributes bug reports to Mozilla&#039;s Firefox and Canonical&#039;s Ubuntu. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Thomas Peters&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Thomas Peters has over thirty years of experience teaching English as a second language to people all over the world. He&#039;s lived and taught in places around the world from small villages north of the Artic Circle to international locations like Japan and Europe. Thomas has also taught all ages and walks of life from kids to college students to business people. He also has experience teaching English in developing countries. &lt;br /&gt;
&lt;br /&gt;
Thomas has a Masters degree in Spanish from the University of Iowa. He matches his love for languages with a passion for travel and enjoys meeting interesting people.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=6</id>
		<title>Grants: Bios</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=6"/>
		<updated>2012-01-06T22:15:16Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&#039;&#039;&#039;Robin &amp;quot;Stormy&amp;quot; Peters&#039;&#039;&#039; - &#039;&#039;Director, President&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Robin &amp;quot;Stormy&amp;quot; Peters is an information technology industry analyst and prominent free and open source software (FOSS) advocate, promoting business use of FOSS. She advocates as a consultant and conference speaker. She co-founded, and was later appointed as executive director of the GNOME Foundation. She is currently head of Developer Engagement at Mozilla. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Ragavan Srinivasan&#039;&#039;&#039; - &#039;&#039;Director, Vice President&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Ragavan Srinivasan works as a Product Manager at Mozilla building a better web. He manages Mozilla&#039;s Services initiatives including the Firefox Sync project. Prior to Mozilla, Ragavan worked on various open source initiatives at VMware Inc. and Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Robin Kimzey&#039;&#039;&#039; - &#039;&#039;Director, Secretary&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Robin Kimzey is currently working as a technology technician at a K-12 public school in Colorado Springs, CO. Before that he was a staff consultant at a Denver based consulting corporation. &lt;br /&gt;
&lt;br /&gt;
Robin has a Bachelor&#039;s of Science in Computer Science degree that he received from Hawaii Pacific University in 1999 and is currently finishing up a Master&#039;s of Engineering in Information Assurance degree at the University of Colorado at Colorado Springs. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Mary &amp;quot;Serena&amp;quot; Thomas Robb&#039;&#039;&#039; - &#039;&#039;Director, Treasurer&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Serena Robb invests a lot of her time in the non-profit world. She helped start Kids On Computers, and is a board member for Steppin&#039; Out, Inc, a non-profit that assists youth who have emancipated while in foster care. She is also an advocate, through CASA, Inc., for children who are in the court system due to neglect and abuse. Prior to this, she was an engineering manager at Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Kees DenHartigh&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Kees DenHartigh worked as a Systems and Network Administrator and Supervisor at the University of Alberta Electrical and Computer Engineering Department. He has been a Linux and Open Source advocate since 1996 and has spent many years building Linux Computer labs. &lt;br /&gt;
&lt;br /&gt;
He is also active in his own community and other international organizations with IT management and social media as a volunteer. &lt;br /&gt;
&lt;br /&gt;
After retiring in 2009 he made 2 trips to Huajuapan Mexico to assist Hermes and Thomas with the 18 deMarzo lab. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Belinda Lopez&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Belinda Lopez has fifteen years of experience in creating innovative learning environments. From pre-school settings to the highest levels of corporate management and even astronauts, her goal is to use technology in new and innovative ways to make learning an enjoyable experience for both learners and teachers. She is currently responsible for education at Canonical, Ltd and is always looking to expand her knowledge of the Open Source world and particularly Ubuntu Linux. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Alex Mayorga Adame&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Alex Mayorga Adame works as a consultant with Softtek as an open source subject matter expert for the world&#039;s largest financial services network, Citi. Previously he worked in IT at UNID Zacatecas. &lt;br /&gt;
&lt;br /&gt;
He received a BSc in Information Systems Engineering at ITESM Campus Zacatecas.   &lt;br /&gt;
&lt;br /&gt;
He is interested in the transformation power of open source technologies and as a hobby, he tests development builds and contributes bug reports to Mozilla&#039;s Firefox and Canonical&#039;s Ubuntu. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Thomas Peters&#039;&#039;&#039; - &#039;&#039;Director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Thomas Peters has over thirty years of experience teaching English as a second language to people all over the world. He&#039;s lived and taught in places around the world from small villages north of the Artic Circle to international locations like Japan and Europe. Thomas has also taught all ages and walks of life from kids to college students to business people. He also has experience teaching English in developing countries. &lt;br /&gt;
&lt;br /&gt;
Thomas has a Masters degree in Spanish from the University of Iowa. He matches his love for languages with a passion for travel and enjoys meeting interesting people.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=5</id>
		<title>Grants: Bios</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=5"/>
		<updated>2012-01-06T22:13:36Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
&#039;&#039;&#039;Robin &amp;quot;Stormy&amp;quot; Peters&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Director, President&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Robin &amp;quot;Stormy&amp;quot; Peters is an information technology industry analyst and prominent free and open source software (FOSS) advocate, promoting business use of FOSS. She advocates as a consultant and conference speaker. She co-founded, and was later appointed as executive director of the GNOME Foundation. She is currently head of Developer Engagement at Mozilla. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Ragavan Srinivasan&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Vice President&#039;&#039;&#039;&lt;br /&gt;
Ragavan Srinivasan works as a Product Manager at Mozilla building a better web. He manages Mozilla&#039;s Services initiatives including the Firefox Sync project. Prior to Mozilla, Ragavan worked on various open source initiatives at VMware Inc. and Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Robin Kimzey&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Secretary&#039;&#039;&#039;&lt;br /&gt;
Robin Kimzey is currently working as a technology technician at a K-12 public school in Colorado Springs, CO. Before that he was a staff consultant at a Denver based consulting corporation. &lt;br /&gt;
Robin has a Bachelor&#039;s of Science in Computer Science degree that he received from Hawaii Pacific University in 1999 and is currently finishing up a Master&#039;s of Engineering in Information Assurance degree at the University of Colorado at Colorado Springs. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Mary &amp;quot;Serena&amp;quot; Thomas Robb&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Treasurer&#039;&#039;&#039;&lt;br /&gt;
Serena Robb invests a lot of her time in the non-profit world. She helped start Kids On Computers, and is a board member for Steppin&#039; Out, Inc, a non-profit that assists youth who have emancipated while in foster care. She is also an advocate, through CASA, Inc., for children who are in the court system due to neglect and abuse. Prior to this, she was an engineering manager at Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Kees DenHartigh&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Kees DenHartigh worked as a Systems and Network Administrator and Supervisor at the University of Alberta Electrical and Computer Engineering Department. He has been a Linux and Open Source advocate since 1996 and has spent many years building Linux Computer labs. &lt;br /&gt;
He is also active in his own community and other international organizations with IT management and social media as a volunteer. &lt;br /&gt;
After retiring in 2009 he made 2 trips to Huajuapan Mexico to assist Hermes and Thomas with the 18 deMarzo lab. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Belinda Lopez&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Belinda Lopez has fifteen years of experience in creating innovative learning environments. From pre-school settings to the highest levels of corporate management and even astronauts, her goal is to use technology in new and innovative ways to make learning an enjoyable experience for both learners and teachers. She is currently responsible for education at Canonical, Ltd and is always looking to expand her knowledge of the Open Source world and particularly Ubuntu Linux. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Alex Mayorga Adame&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Alex Mayorga Adame works as a consultant with Softtek as an open source subject matter expert for the world&#039;s largest financial services network, Citi. Previously he worked in IT at UNID Zacatecas. &lt;br /&gt;
He received a BSc in Information Systems Engineering at ITESM Campus Zacatecas.   &lt;br /&gt;
He is interested in the transformation power of open source technologies and as a hobby, he tests development builds and contributes bug reports to Mozilla&#039;s Firefox and Canonical&#039;s Ubuntu. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Thomas Peters&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Thomas Peters has over thirty years of experience teaching English as a second language to people all over the world. He&#039;s lived and taught in places around the world from small villages north of the Artic Circle to international locations like Japan and Europe. Thomas has also taught all ages and walks of life from kids to college students to business people. He also has experience teaching English in developing countries. &lt;br /&gt;
Thomas has a Masters degree in Spanish from the University of Iowa. He matches his love for languages with a passion for travel and enjoys meeting interesting people.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=4</id>
		<title>Grants: Bios</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=4"/>
		<updated>2012-01-06T22:13:24Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Robin &amp;quot;Stormy&amp;quot; Peters&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, President&#039;&#039;&#039;&lt;br /&gt;
Robin &amp;quot;Stormy&amp;quot; Peters is an information technology industry analyst and prominent free and open source software (FOSS) advocate, promoting business use of FOSS. She advocates as a consultant and conference speaker. She co-founded, and was later appointed as executive director of the GNOME Foundation. She is currently head of Developer Engagement at Mozilla. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Ragavan Srinivasan&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Vice President&#039;&#039;&#039;&lt;br /&gt;
Ragavan Srinivasan works as a Product Manager at Mozilla building a better web. He manages Mozilla&#039;s Services initiatives including the Firefox Sync project. Prior to Mozilla, Ragavan worked on various open source initiatives at VMware Inc. and Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Robin Kimzey&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Secretary&#039;&#039;&#039;&lt;br /&gt;
Robin Kimzey is currently working as a technology technician at a K-12 public school in Colorado Springs, CO. Before that he was a staff consultant at a Denver based consulting corporation. &lt;br /&gt;
Robin has a Bachelor&#039;s of Science in Computer Science degree that he received from Hawaii Pacific University in 1999 and is currently finishing up a Master&#039;s of Engineering in Information Assurance degree at the University of Colorado at Colorado Springs. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Mary &amp;quot;Serena&amp;quot; Thomas Robb&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Treasurer&#039;&#039;&#039;&lt;br /&gt;
Serena Robb invests a lot of her time in the non-profit world. She helped start Kids On Computers, and is a board member for Steppin&#039; Out, Inc, a non-profit that assists youth who have emancipated while in foster care. She is also an advocate, through CASA, Inc., for children who are in the court system due to neglect and abuse. Prior to this, she was an engineering manager at Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Kees DenHartigh&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Kees DenHartigh worked as a Systems and Network Administrator and Supervisor at the University of Alberta Electrical and Computer Engineering Department. He has been a Linux and Open Source advocate since 1996 and has spent many years building Linux Computer labs. &lt;br /&gt;
He is also active in his own community and other international organizations with IT management and social media as a volunteer. &lt;br /&gt;
After retiring in 2009 he made 2 trips to Huajuapan Mexico to assist Hermes and Thomas with the 18 deMarzo lab. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Belinda Lopez&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Belinda Lopez has fifteen years of experience in creating innovative learning environments. From pre-school settings to the highest levels of corporate management and even astronauts, her goal is to use technology in new and innovative ways to make learning an enjoyable experience for both learners and teachers. She is currently responsible for education at Canonical, Ltd and is always looking to expand her knowledge of the Open Source world and particularly Ubuntu Linux. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Alex Mayorga Adame&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Alex Mayorga Adame works as a consultant with Softtek as an open source subject matter expert for the world&#039;s largest financial services network, Citi. Previously he worked in IT at UNID Zacatecas. &lt;br /&gt;
He received a BSc in Information Systems Engineering at ITESM Campus Zacatecas.   &lt;br /&gt;
He is interested in the transformation power of open source technologies and as a hobby, he tests development builds and contributes bug reports to Mozilla&#039;s Firefox and Canonical&#039;s Ubuntu. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Thomas Peters&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Thomas Peters has over thirty years of experience teaching English as a second language to people all over the world. He&#039;s lived and taught in places around the world from small villages north of the Artic Circle to international locations like Japan and Europe. Thomas has also taught all ages and walks of life from kids to college students to business people. He also has experience teaching English in developing countries. &lt;br /&gt;
Thomas has a Masters degree in Spanish from the University of Iowa. He matches his love for languages with a passion for travel and enjoys meeting interesting people.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=3</id>
		<title>Grants: Bios</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Grants:_Bios&amp;diff=3"/>
		<updated>2012-01-06T22:12:26Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Robin &amp;quot;Stormy&amp;quot; Peters&amp;#039;&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;Director, President&amp;#039;&amp;#039;&amp;#039; Robin &amp;quot;Stormy&amp;quot; Peters is an information technology industry analyst and prominent free and open source software (FOSS) advoc...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Robin &amp;quot;Stormy&amp;quot; Peters&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, President&#039;&#039;&#039;&lt;br /&gt;
Robin &amp;quot;Stormy&amp;quot; Peters is an information technology industry analyst and prominent free and open source software (FOSS) advocate, promoting business use of FOSS. She advocates as a consultant and conference speaker. She co-founded, and was later appointed as executive director of the GNOME Foundation. She is currently head of Developer Engagement at Mozilla. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ragavan Srinivasan&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Vice President&#039;&#039;&#039;&lt;br /&gt;
Ragavan Srinivasan works as a Product Manager at Mozilla building a better web. He manages Mozilla&#039;s Services initiatives including the Firefox Sync project. Prior to Mozilla, Ragavan worked on various open source initiatives at VMware Inc. and Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Robin Kimzey&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Secretary&#039;&#039;&#039;&lt;br /&gt;
Robin Kimzey is currently working as a technology technician at a K-12 public school in Colorado Springs, CO. Before that he was a staff consultant at a Denver based consulting corporation. &lt;br /&gt;
Robin has a Bachelor&#039;s of Science in Computer Science degree that he received from Hawaii Pacific University in 1999 and is currently finishing up a Master&#039;s of Engineering in Information Assurance degree at the University of Colorado at Colorado Springs. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mary &amp;quot;Serena&amp;quot; Thomas Robb&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director, Treasurer&#039;&#039;&#039;&lt;br /&gt;
Serena Robb invests a lot of her time in the non-profit world. She helped start Kids On Computers, and is a board member for Steppin&#039; Out, Inc, a non-profit that assists youth who have emancipated while in foster care. She is also an advocate, through CASA, Inc., for children who are in the court system due to neglect and abuse. Prior to this, she was an engineering manager at Hewlett-Packard. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kees DenHartigh&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Kees DenHartigh worked as a Systems and Network Administrator and Supervisor at the University of Alberta Electrical and Computer Engineering Department. He has been a Linux and Open Source advocate since 1996 and has spent many years building Linux Computer labs. &lt;br /&gt;
He is also active in his own community and other international organizations with IT management and social media as a volunteer. &lt;br /&gt;
After retiring in 2009 he made 2 trips to Huajuapan Mexico to assist Hermes and Thomas with the 18 deMarzo lab. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Belinda Lopez&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Belinda Lopez has fifteen years of experience in creating innovative learning environments. From pre-school settings to the highest levels of corporate management and even astronauts, her goal is to use technology in new and innovative ways to make learning an enjoyable experience for both learners and teachers. She is currently responsible for education at Canonical, Ltd and is always looking to expand her knowledge of the Open Source world and particularly Ubuntu Linux. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Alex Mayorga Adame&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Alex Mayorga Adame works as a consultant with Softtek as an open source subject matter expert for the world&#039;s largest financial services network, Citi. Previously he worked in IT at UNID Zacatecas. &lt;br /&gt;
He received a BSc in Information Systems Engineering at ITESM Campus Zacatecas.   &lt;br /&gt;
He is interested in the transformation power of open source technologies and as a hobby, he tests development builds and contributes bug reports to Mozilla&#039;s Firefox and Canonical&#039;s Ubuntu. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Thomas Peters&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;Director&#039;&#039;&#039;&lt;br /&gt;
Thomas Peters has over thirty years of experience teaching English as a second language to people all over the world. He&#039;s lived and taught in places around the world from small villages north of the Artic Circle to international locations like Japan and Europe. Thomas has also taught all ages and walks of life from kids to college students to business people. He also has experience teaching English in developing countries. &lt;br /&gt;
Thomas has a Masters degree in Spanish from the University of Iowa. He matches his love for languages with a passion for travel and enjoys meeting interesting people.&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.kidsoncomputers.org/index.php?title=Main_Page&amp;diff=2</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.kidsoncomputers.org/index.php?title=Main_Page&amp;diff=2"/>
		<updated>2011-10-30T04:51:45Z</updated>

		<summary type="html">&lt;p&gt;Kocadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Kids on Computers is a Colorado Nonprofit! ==&lt;br /&gt;
&lt;br /&gt;
Kids on Computers is a Colorado nonprofit organization!&lt;br /&gt;
&lt;br /&gt;
We are a federal 501(c)(3) tax-exempt organization. Donations you make to Kids on Computers are tax-deductible to the extent permitted by law.  (But, like they all say, you should check with your tax account.)&lt;br /&gt;
&lt;br /&gt;
Please donate! We are happy to provide you a receipt for your donation upon request.&lt;br /&gt;
&lt;br /&gt;
* How to [[donate]]&lt;br /&gt;
* How to [[volunteer]]&lt;br /&gt;
* Our [[projects | school labs]]&lt;/div&gt;</summary>
		<author><name>Kocadmin</name></author>
	</entry>
</feed>