bueno, en vista de que mi nombre ha salido ya en
unos cuantos mails :) voy a contaros como aprend�
(y aprendo, y aprender�) Flash:
function aprendedor(){
this.curiosidad = 100;
this.paciencia = 100;
this.tiempo = 100;
}
function aprender(materia){
if((this.curiosidad >= 50) && (this.paciencia >= 50) && (this.tiempo >=
0)){
if(tengoInfoSobre(materia)){
leer(materia);
} else {
buscarInfoSobre(materia);
aprender(materia);
}
}
}
function tengoInfoSobre(materia){
for(i in biblioteca){
if(biblioteca[i] == materia){
libro = true;
}
} else {
libro = false;
}
for(i in disco_duro){
if(disco_duro[i] == materia){
fichero = true;
}
} else {
fichero = false;
}
for(i in favoritos){
if(favoritos[i] == materia){
link = true;
}
} else {
link = false;
}
if (libro | fichero | link | google){
return true;
} else {
return false;
}
}
function buscarInfoSobre(materia){
for(i in amazon){
if(amazon[i] = materia){
// comprar libro
biblioteca += materia;
}
}
for(i in google){
if(google[i] == materia){
favoritos += materia;
}
}
for(i in amigos){
if(amigos[i].tengoInfoSobre(materia)){
// biblioteca += materia;
// los libros no se prestan :)
disco_duro += materia;
favoritos += materia;
// y aqui quer�a poner que mi amigo tambien
// tiene amigos, y que al final todos lo
// aprendemos todo :)
}
}
}
yo = new aprendedor();
yo.aprender("XML");
yo.aprender("Array");
yo.aprender("praystation.com");
yo.aprender("flashcoders-list");
yo.aprender......
// y asi hasta que tiempo = 0 :)
me imagino que la mitad no me ha entendido... en resumen:
si algo* te llama la atencion, busca toda la informacion
sobre el tema (libros, webs, gente...) y dedicate a leer
y estudiar. nadie naci� sabiendo, y en cuesti�n de c�digo
(y de casi todo lo dem�s) no hay nada que no puedas aprender
con la dosis suficiente de tiempo, paciencia y curiosidad
(ser tremendamente inteligente, brillante, cool y tal ayuda,
pero no es imprescindible)
* "algo" no tiene necesariamente por que ser Flash... pueden
ser matematicas, programacion de virus, teoria del caos,
arquitectura, tipografia, recetas de cocina, fisica cuantica,
tebeos, revistas porno, o la inquietante dualidad onda-particula :)
en fin, ahi qued� eso...
[EMAIL PROTECTED] | bomber-studios.com | see less, think more