The Earth Girls Are Easy: Difference between revisions

Content deleted Content added
No edit summary
m Bot: Fixing double redirect to The O.C. season 4
Tag: Redirect target changed
 
(47 intermediate revisions by 34 users not shown)
Line 1:
#REDIRECT [[The O.C. season 4#ep84]]
{{Infobox Television episode
 
| Colour = #ffaa44
{{Redirect category shell|
| Series = The O.C.
{{R from television episode|The O.C.}}
| Title = The Earth Girls Are Easy
| Image = [[Image:OC-408.jpg|250px]]
| Season = 4 <br> (2006)
| Caption = Seth and Summer at a New Years Party
| Episode = 8
| Airdate = [[December 21]], [[2006]] ([[Fox Broadcasting Company|FOX]])
| Writer = [[Mark Fish]]
| Director = [[Norman Buckley]]
| Production = -
| Prev = [[The Chrismukk-huh? (The O.C. episode)|The Chrismukk-huh?]]
| Next = [[The My Two Dads (The O.C. episode)|The My Two Dads]]
}}
 
'''"The Earth Girls Are Easy"''' is the 84th episode of the [[Fox Broadcasting Company|FOX]] [[television series]], ''[[The O.C.]]''. The episode was written by [[Mark Fish]] and was directed by [[Norman Buckley]]. It originally aired on Thursday, [[December 21]], [[2006]].
 
==Guest starring==
*[[Gary Grubbs]] as Gordon Bullit
*[[Brandon Quinn]] as Spencer Bullit
*[[Kevin Sorbo]] as [[Frank Atwood]]
 
==Plot==
{{spoiler}}
[[Taylor Townsend|Taylor]] finds out that [[Summer Roberts|Summer]] is late and convinces her to take a pregnancy test. A mysterious man named [[Frank Atwood|Frank]] arrives in Newport, curiously interested in the Cohens. It is revealed at the end of the episode that Frank is [[Ryan Atwood|Ryan's]] father. Seth proposes to Summer.
 
==Music==
*"Smile Like You Mean It" by [[Tally Hall]]
*"Warung Beach (Mashtronic Remix)" by [[John Digweed]]
 
==Trivia==
*[[Tally Hall]] covers "Smile Like You Mean It" originally by [[The Killers (band)|The Killers]]. The cover is also featured in ''[[Music from the OC: Mix 6]]''.
*The title of the episode comes from the 1988 movie [[Earth Girls Are Easy]].
* While Sandy is leafing through Franks records at the end of the episode, he is listed as being Male on two sheets, Female on one and having no gender on a fourth. He also is listed as being White, L and again, nothing under race. He has different jobs on each record, all of which require some experience in the field.
* Whilst at the party, Seth bumps into a fan of [[Atomic County]] dressed like Kid Chino. Somewhat ironically, the same fan gives Ryan (the actual Kid Chino) & Seth a ride in his van later in the episode, but doesn't realise the connection.
 
== External links ==
{{Wikiquote|The O.C.}}
* [http://imdb.com/title/tt0912000/ Full Cast & Crew] at the [[Internet Movie Database]]
* [http://www.fox.com/oc/recaps/408.htm Recap from the official website]
* [http://video.google.co.uk/videoplay?docid=-2625792540623252018 Video Clip of The OC, Season 4, Episode 8]
{{OCnavigation}}
 
 
[[Category:The O.C. episodes|Earth Girls Are Easy, The]]
new DogApp2 ();
}
 
 
public DogApp2 ()
{
enterDogs ();
displayDogs ();
sortDogs ();
displayDogs ();
}
 
 
Dog[] d = new Dog [20];
int size = 0;
public void enterDogs ()
{
String name, breed;
char gender;
c.print ("enter the name of dog" + (size + 1) + " ");
name = c.readLine ();
 
while (!name.equalsIgnoreCase ("ZZZ"))
{
c.print ("enter the breed of dog" + (size + 1) + " ");
breed = c.readLine ();
c.print ("enter the gender of dog" + (size + 1) + " ");
gender = c.readChar ();
d [size] = new Dog (name, breed, gender);
size++;
c.print ("enter the name of dog" + (size + 1) + "(ZZZ Ends)");
name = c.readLine ();
}
}
 
 
public void displayDogs ()
{
for (int i = 0 ; i < size ; i++)
c.println (d [i].getName () + "\t" + d [i].getBreed () + "\t" + " "+d [i].getGender ());
}
 
 
 
public void sortDogs ()
{
}