THiS` ONE FOB [=
valerie j. lipana
pure pinay
SiXTEEN. [=
junior @ jbhs
myday; 1027`90
singlee.


FEEL @ HOME.

O1.XANGA
O2.HOME
O3.CLiCK iT [=!!
O4.SUBSCRiPTiONS`
O5.LOOK&FEEL
O6.OUT

THE SEXY ONES`

BLOGRiNGS
O1.PiNAY-LiSHUZ
O2.ASiAN KRU
O3.LAYOUT WHORE
O4.MY HEADPHONE & i ..
O5.i`M SHORT BUT THATS` OK
O6.i <3 LANPHi & SAM

valeriee_xD
read my profile
sign my guestbook

Message: message me


Member Since: 7/14/2004

SubscriptionsSites I Read
corner_of_the_sky_quotes
illwatchyoudie
L0ve_x_qu0tes
lovethose__quotes
BABYTURN_Y0URL0VEUP_L0UDER
brittanys_quotez
miss_laughs_a_lottx4
HXC_Quotes_Icons
ox0_fly_away_0xo
Music__Galore
xOoOwEeEx
TRUE2
infinite_BEATS
TAsT3LiKEcNdy53
KENKY
xSaY_iT_aInT_sOx
sesshomarugal
username
pInkIsH_paSsiOn_gUrlY
xfalse_romancex
xthesexstarsxbleedx
xXixlOovEexmEeXx
LuV_ThA_LiL_SaiNt
sWeeTseXytHiNg_o8

Blogrings
..::*_!aZiaN cReW!_*::..
previous - random - next

I'M A LAYOUT WH0RE!
previous - random - next

MY HEADPH0NES & I..
previous - random - next

pinay - lishuz
previous - random - next

i'm short but that's ok
previous - random - next

i <3 LANPHI and SAM xD
previous - random - next

I'm a Quoteaholic.
previous - random - next


Posting Calendar

|<< oldest | newest >>|
view all weblog archives

Get Involved!

Suggest a link

Recommend to friend

Create a site

Wednesday, October 17, 2007

Valerie De Mesa

Kuglen -4

College Prep English

October 17, 2007

Journal #

My Saturday is like this: I wake up around 10 or 11am at the earliest, usually because my parents or just my dad will wake me up to go do something. I’m get mad, because I hate waking up early because the whole week I barely get my full 8 hours of sleep. I never sleep early Friday nights, there for I usually sleep until noon on Saturdays. This is also because I get all the sleep back from the week before. My parents and I go to the market and buy groceries or go mall to go shopping. Then, by the afternoon we are all cooking for dinner while watching TV. We find lots of things to do. Sometimes, we clean or just stay at home. Sometimes, my mother goes to work at the second job. If so, my dad and I just stay home. My dad is so annoying, he makes me do a lot of things. I, of course, don’t want to do anything because its my rest day. But I do so anyways, just to be not lazy. This is when I have nothing scheduled that day, if I do I usually just go there. I’m usually chilling at my friend’s house or we are all watching a movie. This Saturday, I actually have something for Key Club at Santa Clarita. I don’t know if I want to go though, because it is so far and it’s only for Fall Rally. Fall Rally is this Key Club convention at Six Flags, it’s really fun. I always go, we basically just cheer for our division. This Saturday, they want to all meet up to practice what we are going to do during the convention. My Saturdays are pretty boring, but I love them. Saturday is my resting day. No homework, well even if I do have homework I don’t do it on Saturdays. This is a rule I’ve made for myself. On Sunday is when I begin doing my homework.


Tuesday, May 29, 2007

public class Lip_1
// Write an application program that creates a Vic object
// and then moves a CD out of its first slot into its second
// and also out of its fourth slot into its third. 
// Use reset to be sure you have enough slots. 
// Vic.java is already in the U drive.
{ public static void main (String [ ] args)
{ Vic.reset (args);
Vic val;
val = new Vic();
val.takeCD();
val.moveOn();
val.putCD();
val.moveOn();
val.moveOn();
val.takeCD();
val.backUp();
val.putCD();
}
}

public class Lip_2
{
// Write an application program that shifts any CDs
// that are in the first two slots of the first
// two sequences to the respective stacks.
public static void main (String[ ] args)
{ Vic val;
val = new Vic();
val.
{ Vic jay;
jay = new Vic();
}
}
}

 


// Write an instance method named seesTwoDifferent for a subclass of Vic: 
// The executor tells whether its current slot and the next slot exist
// and exactly one has a CD.  Leave the executor in its original state.

public boolean seesTwoDifferent()
{ if ( ! seesSlot())
return false;
if (! seesCD())
return false;
moveOn();
if (seesSlot())
{ if ( seesCD())
{
return true;
}
}
else
{
return false;
}
} //======================
}


Friday, May 25, 2007

ARTICLES FROM TIME MAGAZINE ON TIMOTHY MCVEIGH AND ALL HIS STUFFERZ

MAY 1,  1995

http://www.time.com/time/magazine/article/0,9171,982867,00.html

http://www.time.com/time/magazine/article/0,9171,982868,00.html

June 16, 1997

http://www.time.com/time/magazine/article/0,9171,986526,00.html

May 21, 2001

http://www.time.com/time/magazine/article/0,9171,999908,00.html


Thursday, May 24, 2007

Computer Science –Chapter 2 “Java Au Naturel” Quiz  PREPARATION

 

 

Sec 2.1  Write an application program that creates a Vic object and then moves a CD out of its first slot into its second and also out of its fourth slot into its third.  Use reset to be sure you have enough slots.

Sec 2.2  Write an application program that uses a SmartVic object, augmented by movePut and backTake as described in the exercises, to move the CDs in the second, third, and fourth slots into the fourth, second, and third slots respectively, with minimal effort.

Sec 2.3a  Write an application program that shifts any CDs that are in the first two slots of the first two sequences to the respective stacks.

Sec 2.3b  Write an application program that removes the fifth and seventh CD from each of the first three sequences. 

Sec 2.6a  Write an instance method named seesTwoDifferent for a subclass of Vic:  The executor tells whether its current slot and the next slot exist and exactly one has a CD.  Leave the executor in its original state.

Sec 2.8b  Write an instance method public void giveCD(Vic par) for a subclass of Vic:  The executor gives the CD in its current slot to the Vic parameter who puts it into its slot (no effect if the executor is not at a filled slot or the parameter is not at an empty slot).

Sec 2.8c**  Write an instance method public void backSwap() for a subclass of Vic:  The executor swaps the CD in the current slot with the one in the slot before it.  But if there is no CD in the current slot or the one before, the method is to have no effect.  Precondition:  Both slots exist.

Listing 2.4  Write an application program whose main method creates a Vic object and then, if it has a CD in its second slot, takes that CD out and puts it in the fourth slot if possible.

Exercise 2.15  Write a method public void swapTwo() for a subclass of Vic:  The executor swaps the CD in the current slot with the CD in the following slot, except that it moves no CD at all if either CD is missing.  Leave the executor at its original position.

Exercise 2.22  Write a method public void shiftForward() for a subclass of Vic:  The executor moves the CD from the next slot into the current slot, but only if the current slot is empty and the next slot exists and is not empty.  In either case, the executor is at the next slot after the method finishes executing.

Listing 2.8  Write a query method public boolean seesTwoEmpty() for a subclass of Vic:  The executor tells whether its current slot and the next slot both exist and are empty.  Leave the executor unchanged.  Do not use a boolean variable.

Listing 2.9  Write a query method public boolean hasTwoOnStack() for a subclass of Vic:  The executor tells whether it has at least two CDs on its stack.  Leave the executor unchanged.  Use a boolean variable appropriately.  Precondition:  The current slot exists and is empty.


Monday, May 21, 2007

Oklahoma City Bombing

On April 15, 1995 Timothy McVeigh rented a Ryder truck in Junction City, Kansas under the alias Robert D. Kling. On April 16, he drove to Oklahoma City with fellow conspirator Terry Nichols where he parked a getaway vehicle several blocks away from the Alfred P. Murrah Federal Building.On April 17 and 18, the men moved 108 fifty-pound (22 kg) bags of ammonium nitrate fertilizer, three fifty-five gallon (208 l) drums of liquid nitromethane, several crates of explosive Tovex sausage, seventeen bags of ANFO, and spools of shock tube and cannon fuse. The two then drove to Geary County State Lake where they mixed the chemicals together using plastic buckets and a bathroom scale. Once it was completed, McVeigh added a dual-fuse ignition system which he could access through the truck's front cab. McVeigh also included more explosives on the driver's side of the cargo bay, which he could ignite with his Glock pistol if the primary fuses failed. After finishing the configuration of the truck-bomb, the two men separated, Nichols returning to Herington, Kansas, and McVeigh driving the truck to Oklahoma City.

At dawn on April 19, as he drove toward the Murrah Federal building, McVeigh carried with him an envelope whose contents included pages from The Turner Diaries, a fictional account of modern-day revolutionary activists who rise up against the government. He also wore a printed T-shirt which included phrases such as "SIC SEMPER TYRANNIS" ("Thus ever to tyrants", the phrase allegedly shouted by John Wilkes Booth immediately after the assassination of Abraham Lincoln) and "The tree of liberty must be refreshed time to time with the blood of patriots and tyrants" (from Thomas Jefferson). As the truck approached the building, at 8:57 a.m. CST, McVeigh lit the five-minute fuse. Three minutes later, still a block away, he lit the two-minute fuse. He parked the Ryder truck in a drop-off zone (incidentally situated under the building's day-care center), locked the vehicle, and headed to his getaway vehicle.

bibliography

Kallen, Stuart A. A Cultural History of the United States: The 1990s. San Diego: Lucent Books, Inc., 1999.



Next 5 >>



<bgsound src="http://joyandbevs.tripod.com/kulangnakulang.mp3" loop="infinite">