Archive for April 16th, 2009

Thursday, April 16th, 2009 | Author: AngelicLight
newage
baka janaiyo asked:


yes all of you everyone is black when the lights are off…lol

I recently heard a song by an artist named Immortal Technique and a few lines of his song called “4th Branch of the government” made me think about our country a lot. What do these lines mean to you

“How could this be the land of the free home of the brave/
indigenous holocaust and the home of the slave”

“condelissa Rice is Just a newage sally hemmings”

“the judice betraying christ, you mudered him stole his religeon and painted him white”

“the average person made to be blind to reason/ a desert full of genocide and the bodies are freezin/ and the world doesnt believe that you’re fighting for reedom/ cuz you fucked the middle east and gave birth to a demon/
Diana:
A lil background on the artist he is afro peruvian and moved to the U.S. when he was 13
and my main concern was that do you agree that religion has been midified ti fit the views of ruling bodies in history and our current system of government is flawed and the people in chare continue to make mistake after mistake

Poetica:

I agree he does come a cross as bitter and militant but the iformation about the bad deeds of our government are a bit of an eye opener…if you want google MK ultra, tuskegee experiments, and COINTELPRO
forest by thesea:
“It’s easy to not acknowlege your own races faults when you are pointing out the wrongs of anothers.” (the U.S., The artist, or just people in general?)

Gavin

Category: theage  | 4 Comments
Thursday, April 16th, 2009 | Author: AngelicLight
newage
DavidSmith asked:


Right so I have this friend, lets call him McGoofey. A while back he started to investigate the “TRUTH” movement, which says that a global elete committed 9/11. He was, ignoring the massive evidence against his claim, convinced that there is a group of jewish bankers that control the world. This group has been trying, ever since the fall of the bronze age; to create a ‘new world order’. This new world order is, in essance a secrete government, which is despotic in rule. This group is within our own government, watching our everymove. It also pays the ‘insurgents’ in Iraq to attack US troops. He also believes in an ‘astro-plane’ which is essentially a newage heaven in which we are all one consinousness, living together. He is also under the impression that he can access this via meditation and self denial.To me this sounds like insanity, at the least dellusion. What do you think?

Wyatt
Category: theage  | 3 Comments
Thursday, April 16th, 2009 | Author: AngelicLight
newage
ifyouhadthechance asked:


here is the problem:

For this assignment, you will program the template class Tamagotchi that models a Tamagochi, as well as an application class that simulates playing the toy.
To get started, model a Tamagotchi by its name, type, color, current age, fullness and happiness status both represented by an integer, and its sick status, which is a boolean. The types of Tamagotchi are Duck, Bear, Fresh Prince, and Temple Guard. Make all data fields private and write setter/getter methods for each of these. Write a constructor for the class which sets default values for all instance variables.

First, you must prompt the user to enter a name, type and color for their Tamagotchi. These three prompts will not be done within methods of the Tamagotchi class, but directly input from the main method in the application class and assigned to the virtual pet using the corresponding “set” methods….

thats just the first part of the problem. i got stuck because i had a coding error “cannot find constructor Tamagotchi” line 22). here is my template as well as my program thus far.

template class:

public class Tamagotchi{

//define defaults
String name;
String type;
String color;
int age;
int happiness;
int hunger;
boolean sick;

public Tamagotchi(){
name = “noName”;
type = “none”;
color = “none”;
age = 0;
happiness = 4;
hunger = 4;
sick = false;
}

//display stats
public void displayStats() {
System.out.println(”Your tamogotchi’s name is ” + name + “.”);
System.out.println(”Your tamogotchi is a ” + type + “.”);
System.out.println(”The tamogotchi is ” + color + “.”);
System.out.println(”The tamogotchi’s age is ” + age + “.”);
System.out.println(”The tamogotchi’s happiness is ” + happiness + “.”);
System.out.println(”The tamogotchi’s hunger is ” + hunger + “.”);
}

//name
public String getName(String newName){
name = newName;
return name;
}
//type
public String getType(String newType){
type = newType;
return type;
}
//color
public String getColor(String newColor){
color = newColor;
return color;
}
//age
public int getAge(int newAge){
age = newAge;
return age;
}
//happiness level
public int getHappiness(int newHappiness){
happiness = newHappiness;
return happiness;
}
//hunger level
public int getHunger(int newHunger){
hunger = newHunger;
return hunger;
}
//sick or not
public boolean getSick(boolean sickness){
sick = sickness;
return sick;
}
}

the application class:

import java.util.Scanner;

public class Tamagotchis{
public static void main(String[] args){

//define a scanner
Scanner input = new Scanner(System.in);

//get user input for a name, type, and color
System.out.println(”Please enter a name for your new pet: “);
String petname = input.nextLine();
System.out.println(”What type of tamagotchi is ” + petname + “? You can choose a duck, bear, fresh prince, or temple guard.”);
String pettype = input.nextLine();
while ((pettype != “duck”) || (pettype != “bear”) || (pettype != “fresh prince”) ||(pettype != “temple guard”)){
System.out.println(”Sorry, that is not one of your choices! Please choose from a duck, bear, fresh prince, or temple guard”);
pettype = input.nextLine();
}
System.out.println(”What color should ” + petname + ” be?”);
String petcolor = input.nextLine();

//create tamagotchi object
Tamagotchi newpet = new Tamagotchi(petname, pettype, petcolor);

//print out the tamagotchi’s current status
newpet.displayStats();
}
}

Cooper

Category: theage  | One Comment