Category: lyrics
04/29/06 10:32 - ID#32586
Oh say can you see
in reference to (e:libertad,21) I wrote this poem in reference to the national anthem thing.
Those of you that speak javascript might find it funny.
<html>
<body>
<script type="text/javascript">
illegalAlienYearningForLivingWage = function(name){
var t=this;
t.name= name;
t.languageSpoken = 'english';
t.alive=1;
t.health=100;
t.englishCompetency=0;
t.illegalStatus=1;
t.toHTML();
};
illegalAlienYearningForLivingWage.prototype.see = function(condition){
this.lyricsSung = condition;
this.report(this.name+' sang '+this.lyricsSung);
switch(condition){
case "by the dawn's early light":
this.becomesAmerican();
break;
case "a la luz de la aurora":
this.removeFromCountry();
break;
}
this.updateStats();
};
illegalAlienYearningForLivingWage.prototype.becomesAmerican = function(){
this.usCitizenship=true;
this.chanceForLivingWage = true;
this.illegalStatus=0;
window.document.body.style.backgroundColor ='blue';
alert('congratulations '+this.name+' you sang in english you can be american')
}
illegalAlienYearningForLivingWage.prototype.removeFromCountry = function(){
this.report("pablo was send back to mexico");
this.tryAndReturnByCrossingTheBorderForALivingWage();
if(this.health > 0){
this.tryAndLearnEnglishWorking70HoursInAFieldPickingStrawberries();
if(this.englishCompetency < 80){
this.usCitizenship=false;
this.chanceAtLivingWage = false;
} else {
this.see("by the dawn's early light");
}
} else {
window.document.body.style.backgroundColor ='red';
alert(this.name+' died at a cattle ranch getting shot by neonazis. Game over');
this.health=0;
}
this.updateStats();
};
illegalAlienYearningForLivingWage.prototype.tryAndLearnEnglishWorking70HoursInAFieldPickingStrawberries = function(){
var english_learned = Math.floor(Math.random()*20);
this.report(this.name+' learned '+english_learned+'% more english working 70 hours a week picking strawberries in a field');
return this.englishCompetency += english_learned;
};
illegalAlienYearningForLivingWage.prototype.tryAndReturnByCrossingTheBorderForALivingWage = function(){
health_lost = Math.floor(Math.random()*20);
this.report(this.name+ 'lost '+health_lost+'% health on the journey');
this.health -=health_lost;
};
illegalAlienYearningForLivingWage.prototype.toHTML = function(){
var t=this;
t.story = document.createElement('div');
btn = document.createElement('button');
btn.appendChild(document.createTextNode('Try and sing in english'));
dat = document.createElement('div');
statsLyrics =document.createElement('p');
statsLyrics.appendChild(document.createTextNode('Lyrics Sung: '));
t.statsLyricsSung = document.createElement('span');
t.statsLyricsSung.appendChild(document.createTextNode(''));
statsLyrics.appendChild(this.statsLyricsSung);
statsEnglishCompetency =document.createElement('p');
statsEnglishCompetency.appendChild(document.createTextNode('English Competetcy: '));
t.statsEnglishCompetencyPercent = document.createElement('span');
t.statsEnglishCompetencyPercent.appendChild(document.createTextNode(''));
statsEnglishCompetency.appendChild(this.statsEnglishCompetencyPercent);
statsHealth =document.createElement('p');
statsHealth.appendChild(document.createTextNode('Heath: '));
t.statsHealthPercent = document.createElement('span');
t.statsHealthPercent.appendChild(document.createTextNode(''));
statsHealth.appendChild(this.statsHealthPercent);
dat.appendChild(statsLyrics);
dat.appendChild(statsEnglishCompetency);
dat.appendChild(statsHealth);
window.document.body.appendChild(btn);
window.document.body.appendChild(dat);
window.document.body.appendChild(t.story);
btn.onclick = function(){
t.story.innerHTML ='';
t.see("a la luz de la aurora");
}
}
illegalAlienYearningForLivingWage.prototype.updateStats = function(){
this.statsLyricsSung.firstChild.data = this.lyricsSung;
this.statsHealthPercent.firstChild.data = this.health;
this.statsEnglishCompetencyPercent.firstChild.data = this.englishCompetency;
};
illegalAlienYearningForLivingWage.prototype.report = function(info){
this.story.innerHTML += '<br />'+info;
}
pablo = new illegalAlienYearningForLivingWage('pablo');
</script>
</body>
</html>
Those of you that speak javascript might find it funny.
<html>
<body>
<script type="text/javascript">
illegalAlienYearningForLivingWage = function(name){
var t=this;
t.name= name;
t.languageSpoken = 'english';
t.alive=1;
t.health=100;
t.englishCompetency=0;
t.illegalStatus=1;
t.toHTML();
};
illegalAlienYearningForLivingWage.prototype.see = function(condition){
this.lyricsSung = condition;
this.report(this.name+' sang '+this.lyricsSung);
switch(condition){
case "by the dawn's early light":
this.becomesAmerican();
break;
case "a la luz de la aurora":
this.removeFromCountry();
break;
}
this.updateStats();
};
illegalAlienYearningForLivingWage.prototype.becomesAmerican = function(){
this.usCitizenship=true;
this.chanceForLivingWage = true;
this.illegalStatus=0;
window.document.body.style.backgroundColor ='blue';
alert('congratulations '+this.name+' you sang in english you can be american')
}
illegalAlienYearningForLivingWage.prototype.removeFromCountry = function(){
this.report("pablo was send back to mexico");
this.tryAndReturnByCrossingTheBorderForALivingWage();
if(this.health > 0){
this.tryAndLearnEnglishWorking70HoursInAFieldPickingStrawberries();
if(this.englishCompetency < 80){
this.usCitizenship=false;
this.chanceAtLivingWage = false;
} else {
this.see("by the dawn's early light");
}
} else {
window.document.body.style.backgroundColor ='red';
alert(this.name+' died at a cattle ranch getting shot by neonazis. Game over');
this.health=0;
}
this.updateStats();
};
illegalAlienYearningForLivingWage.prototype.tryAndLearnEnglishWorking70HoursInAFieldPickingStrawberries = function(){
var english_learned = Math.floor(Math.random()*20);
this.report(this.name+' learned '+english_learned+'% more english working 70 hours a week picking strawberries in a field');
return this.englishCompetency += english_learned;
};
illegalAlienYearningForLivingWage.prototype.tryAndReturnByCrossingTheBorderForALivingWage = function(){
health_lost = Math.floor(Math.random()*20);
this.report(this.name+ 'lost '+health_lost+'% health on the journey');
this.health -=health_lost;
};
illegalAlienYearningForLivingWage.prototype.toHTML = function(){
var t=this;
t.story = document.createElement('div');
btn = document.createElement('button');
btn.appendChild(document.createTextNode('Try and sing in english'));
dat = document.createElement('div');
statsLyrics =document.createElement('p');
statsLyrics.appendChild(document.createTextNode('Lyrics Sung: '));
t.statsLyricsSung = document.createElement('span');
t.statsLyricsSung.appendChild(document.createTextNode(''));
statsLyrics.appendChild(this.statsLyricsSung);
statsEnglishCompetency =document.createElement('p');
statsEnglishCompetency.appendChild(document.createTextNode('English Competetcy: '));
t.statsEnglishCompetencyPercent = document.createElement('span');
t.statsEnglishCompetencyPercent.appendChild(document.createTextNode(''));
statsEnglishCompetency.appendChild(this.statsEnglishCompetencyPercent);
statsHealth =document.createElement('p');
statsHealth.appendChild(document.createTextNode('Heath: '));
t.statsHealthPercent = document.createElement('span');
t.statsHealthPercent.appendChild(document.createTextNode(''));
statsHealth.appendChild(this.statsHealthPercent);
dat.appendChild(statsLyrics);
dat.appendChild(statsEnglishCompetency);
dat.appendChild(statsHealth);
window.document.body.appendChild(btn);
window.document.body.appendChild(dat);
window.document.body.appendChild(t.story);
btn.onclick = function(){
t.story.innerHTML ='';
t.see("a la luz de la aurora");
}
}
illegalAlienYearningForLivingWage.prototype.updateStats = function(){
this.statsLyricsSung.firstChild.data = this.lyricsSung;
this.statsHealthPercent.firstChild.data = this.health;
this.statsEnglishCompetencyPercent.firstChild.data = this.englishCompetency;
};
illegalAlienYearningForLivingWage.prototype.report = function(info){
this.story.innerHTML += '<br />'+info;
}
pablo = new illegalAlienYearningForLivingWage('pablo');
</script>
</body>
</html>
Permalink: Oh_say_can_you_see.html
Words: 460
Author Info
Date Cloud
- 03/24
- 11/23
- 02/23
- 01/23
- 12/22
- 01/22
- 12/21
- 11/21
- 12/20
- 11/20
- 01/19
- 12/18
- 08/18
- 04/18
- 03/18
- 02/17
- 01/17
- 12/16
- 11/16
- 09/16
- 08/16
- 07/16
- 06/16
- 05/16
- 04/16
- 03/16
- 02/16
- 01/16
- 12/15
- 11/15
- 10/15
- 09/15
- 08/15
- 07/15
- 06/15
- 05/15
- 04/15
- 03/15
- 02/15
- 01/15
- 12/14
- 11/14
- 10/14
- 09/14
- 08/14
- 07/14
- 06/14
- 05/14
- 04/14
- 03/14
- 02/14
- 01/14
- 12/13
- 11/13
- 10/13
- 09/13
- 08/13
- 07/13
- 06/13
- 05/13
- 04/13
- 03/13
- 02/13
- 01/13
- 12/12
- 11/12
- 10/12
- 09/12
- 08/12
- 07/12
- 06/12
- 05/12
- 04/12
- 03/12
- 02/12
- 01/12
- 12/11
- 11/11
- 10/11
- 09/11
- 08/11
- 07/11
- 06/11
- 05/11
- 04/11
- 03/11
- 02/11
- 01/11
- 12/10
- 11/10
- 10/10
- 09/10
- 08/10
- 07/10
- 06/10
- 05/10
- 04/10
- 03/10
- 02/10
- 01/10
- 12/09
- 11/09
- 10/09
- 09/09
- 08/09
- 07/09
- 06/09
- 05/09
- 04/09
- 03/09
- 02/09
- 01/09
- 12/08
- 11/08
- 10/08
- 09/08
- 08/08
- 07/08
- 06/08
- 05/08
- 04/08
- 03/08
- 02/08
- 01/08
- 12/07
- 11/07
- 10/07
- 09/07
- 08/07
- 07/07
- 06/07
- 05/07
- 04/07
- 03/07
- 02/07
- 01/07
- 12/06
- 11/06
- 10/06
- 09/06
- 08/06
- 07/06
- 06/06
- 05/06
- 04/06
- 03/06
- 02/06
- 01/06
- 12/05
- 11/05
- 10/05
- 09/05
- 08/05
- 07/05
- 06/05
- 05/05
- 04/05
- 03/05
- 02/05
- 01/05
- 12/04
- 11/04
- 10/04
- 09/04
- 08/04
- 07/04
- 06/04
- 05/04
- 04/04
- 03/04
- 02/04
- 01/04
- 12/03
- 11/03
- 10/03
- 09/03
- 08/03
- 07/03
Category Cloud
- 24 linwood
- animals
- art
- basra
- bathroom
- biking
- birthdays
- body
- botanical gardens
- brushwood
- buffalo
- camping
- cars
- clothes
- clothing
- computers
- dancing
- food
- furniture
- games
- haircut
- haircuts
- halloween
- hiking
- holidays
- house
- key west
- mobile
- music
- nature
- pets
- provincetown
- rochester
- swimming
- toronto
- toys
- travel
- vacation
- weather
- wedding
- weddings
- work
- accidents
- allentown
- android
- animals
- apple
- architecture
- art
- artvoice
- bars
- bathroom
- beach
- bikes
- biking
- birthdays
- body
- books
- brushwood
- buffalo
- buffalo rising
- bugs
- buildings
- camping
- cancer
- cars
- cats
- central terminal
- childhood
- church of the ascension
- clothes
- clothing
- computer
- computers
- conference
- crohns
- dance
- dancing
- dentist
- design
- downtown
- drugs
- electronics
- elmwood
- energy
- environment
- estrip
- events
- exercise
- family
- festivals
- firecracker
- food
- friends
- furniture
- gadgets
- games
- garden
- gay
- government
- gym
- hair
- haircut
- haircuts
- halloween
- hardware
- health
- hiking
- history
- holiday
- holidays
- house
- housing
- jewlery
- kenmore
- key west
- life
- linux
- linwood
- love
- marriage
- media
- mobile
- mobl
- movies
- music
- mustache
- nature
- nikon
- opinion
- orange tongue
- party
- peeptalk
- people
- pets
- photos
- poetry
- politics
- portland
- pride
- programming
- property
- protest
- random
- recycling
- religion
- rememberbuffalo
- renting
- school
- shoes
- shopping
- sports
- stress
- stuff
- swimming
- technology
- television
- thesis
- thursday
- thursdays
- toys
- transportation
- travel
- vacation
- vegas
- war
- water
- weather
- web
- wedding
- weddings
- weekend
- windows
- winter
- work
- world
- youtube
- zooey
The poem's sweet dude. I love it how Pablo looses life to learn English. It's kinda sad and true, we steal life from these people, and when we've had our fill we say..."uh stay in your dirty little country until I want to go on vacation or screw the poor people here again." America: The life-pire.
If you ever get a chance go to TJ just across the border. It's the most depressing adventure you'll ever go on. You'll get trailed for yards by starving babies that are cuter than buttons, and then you'll come home an enjoy a big mac and smile again.