Hola Peoplez: Hardware VS Software. Yep
+9
Applepie533
Ddiaxv
5thRibSmite
TerseRat5204
Martin1346
joehammer2009
FlareonMaster
Eagle Eye307
Stormageddon, Dark Lord
13 posters
Page 1 of 4
Page 1 of 4 • 1, 2, 3, 4
Hola Peoplez: Hardware VS Software. Yep
Hardware > software
Last edited by Eagle Eye Is A Goober on Sun Sep 02, 2012 10:57 am; edited 1 time in total
Stormageddon, Dark Lord- Lieutenant
- Posts : 120
Points : 4620
Join date : 2012-09-02
Age : 74
Location : ~1 AU from the sun*
Xbox Account
Xbox Live: No
Gamertag: Too poor to afford one
Clan Tag: Srsly
Re: Hola Peoplez: Hardware VS Software. Yep
I beg to differ, good sir.
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
I always thought C.J was a goober.
FlareonMaster- Ultimate Poster
- Posts : 21458
Points : 26560
Join date : 2009-09-02
Age : 30
Location : My House on Planet Earth
Xbox Account
Xbox Live: Yes
Gamertag: FlareonMaster
Clan Tag: V03
Re: Hola Peoplez: Hardware VS Software. Yep
Hardware IS better than software. SO TRUE
joehammer2009- Private
- Posts : 17
Points : 4571
Join date : 2012-06-14
Re: Hola Peoplez: Hardware VS Software. Yep
joehammer2009 wrote:Hardware IS better than software. SO TRUE
Not quite. The two are equal in the sense that they would be useless without each other.
Edit: Depending on your definition of software, I suppose you may be able to do very basic tasks with hardware and no software. Regardless, I still believe that software is equally as important.
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye307 wrote:joehammer2009 wrote:Hardware IS better than software. SO TRUE
Not quite. The two are equal in the sense that they would be useless without each other.
Edit: Depending on your definition of software, I suppose you may be able to do very basic tasks with hardware and no software. Regardless, I still believe that software is equally as important.
Stormageddon, Dark Lord- Lieutenant
- Posts : 120
Points : 4620
Join date : 2012-09-02
Age : 74
Location : ~1 AU from the sun*
Xbox Account
Xbox Live: No
Gamertag: Too poor to afford one
Clan Tag: Srsly
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye Is A Goober wrote:
You jelly?
- Code:
//Simple Combat Simulator by C.J. Holt
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
typedef struct { //character structure
int hitpoints;
int hitchance;
int maxhit;
int minhit;
} spawn;
int main() {
int roll;
spawn player;
spawn alien;
srand((unsigned)time(NULL));
player.hitpoints = 100;
player.maxhit = 50;
player.minhit = 10;
player.hitchance = 40;
alien.hitpoints = 100;
alien.maxhit = 50;
alien.minhit = 10;
alien.hitchance = 35;
printf("You encounter a hostile alien!\n");
while ((player.hitpoints>0)&&(alien.hitpoints>0)) { //start a round of the fight
printf("\nYou have %d%% health remaining!\nThe alien has %d%% health remaining!", player.hitpoints, alien.hitpoints);
printf("\n\n");
system("PAUSE");
printf("\n___________________________________\n");
//PLAYER ATTACKS
printf("\nYou fire at the alien!\n"); //player attacks
roll = rand()%100; //calculate whether the player hits or misses
if (roll<=player.hitchance) { //if player hits
while ((roll>player.maxhit)||(roll<player.minhit)) { //calculate damage done
roll = rand()%50;
}
alien.hitpoints -= roll; //subtract the damage amount from the opponent's hitpoints
printf("You shot the alien, dealing it %d damage!\n", roll);
}
else { //if opponent misses
roll = rand()%3+1;
if (roll==1) {
printf("You missed!\n");
}
if (roll==2) {
printf("The alien ducked behind some cover!\n");
}
if (roll==3) {
printf("The alien's armour protected it!\n");
}
}
//OPPONENT ATTACKS
if (alien.hitpoints>0) { //first check to see if the opponent died
printf("\nThe alien fires back at you!\n");
roll = rand()%100; //calculate whether the opponent hits or misses
if (roll<=alien.hitchance) { //if opponent hits
while ((roll>alien.maxhit)||(roll<alien.minhit)) { //calculate damage done
roll = rand()%50;
}
player.hitpoints -= roll; //subtract the damage amount from the player's hitpoints
printf("The alien shot you, dealing %d damage!\n", roll);
}
else { //if opponent misses
roll = rand()%3+1;
if (roll==1) {
printf("You swiftly maneuver behind some cover!\n");
}
if (roll==2) {
printf("You barely manage to dodge!\n");
}
if (roll==3) {
printf("The alien missed!\n");
}
}
}
}
//BATTLE OVER
if (player.hitpoints<=0) { //lose game if player has died
printf("\nYou died! Game over.\n\n");
system("PAUSE");
return 0;
}
if (alien.hitpoints<=0) { //win game is alien has died
printf("\nYou defeated the alien! Congratulations!\n\n");
system("PAUSE");
return 0;
}
//ERROR
system("CLS");
printf("\nThe application has encountered an error and must close!\nPlease report this issue to Charles Holt.\n");
system("PAUSE");
return 1;
}
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye307 wrote:Eagle Eye Is A Goober wrote:
You jelly?
- Code:
//Simple Combat Simulator by C.J. Holt
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
typedef struct { //character structure
int hitpoints;
int hitchance;
int maxhit;
int minhit;
} spawn;
int main() {
int roll;
spawn player;
spawn alien;
srand((unsigned)time(NULL));
player.hitpoints = 100;
player.maxhit = 50;
player.minhit = 10;
player.hitchance = 40;
alien.hitpoints = 100;
alien.maxhit = 50;
alien.minhit = 10;
alien.hitchance = 35;
printf("You encounter a hostile alien!\n");
while ((player.hitpoints>0)&&(alien.hitpoints>0)) { //start a round of the fight
printf("\nYou have %d%% health remaining!\nThe alien has %d%% health remaining!", player.hitpoints, alien.hitpoints);
printf("\n\n");
system("PAUSE");
printf("\n___________________________________\n");
//PLAYER ATTACKS
printf("\nYou fire at the alien!\n"); //player attacks
roll = rand()%100; //calculate whether the player hits or misses
if (roll<=player.hitchance) { //if player hits
while ((roll>player.maxhit)||(roll<player.minhit)) { //calculate damage done
roll = rand()%50;
}
alien.hitpoints -= roll; //subtract the damage amount from the opponent's hitpoints
printf("You shot the alien, dealing it %d damage!\n", roll);
}
else { //if opponent misses
roll = rand()%3+1;
if (roll==1) {
printf("You missed!\n");
}
if (roll==2) {
printf("The alien ducked behind some cover!\n");
}
if (roll==3) {
printf("The alien's armour protected it!\n");
}
}
//OPPONENT ATTACKS
if (alien.hitpoints>0) { //first check to see if the opponent died
printf("\nThe alien fires back at you!\n");
roll = rand()%100; //calculate whether the opponent hits or misses
if (roll<=alien.hitchance) { //if opponent hits
while ((roll>alien.maxhit)||(roll<alien.minhit)) { //calculate damage done
roll = rand()%50;
}
player.hitpoints -= roll; //subtract the damage amount from the player's hitpoints
printf("The alien shot you, dealing %d damage!\n", roll);
}
else { //if opponent misses
roll = rand()%3+1;
if (roll==1) {
printf("You swiftly maneuver behind some cover!\n");
}
if (roll==2) {
printf("You barely manage to dodge!\n");
}
if (roll==3) {
printf("The alien missed!\n");
}
}
}
}
//BATTLE OVER
if (player.hitpoints<=0) { //lose game if player has died
printf("\nYou died! Game over.\n\n");
system("PAUSE");
return 0;
}
if (alien.hitpoints<=0) { //win game is alien has died
printf("\nYou defeated the alien! Congratulations!\n\n");
system("PAUSE");
return 0;
}
//ERROR
system("CLS");
printf("\nThe application has encountered an error and must close!\nPlease report this issue to Charles Holt.\n");
system("PAUSE");
return 1;
}
*Takes a breadboard and throws it at Eagle Eye307*
Stormageddon, Dark Lord- Lieutenant
- Posts : 120
Points : 4620
Join date : 2012-09-02
Age : 74
Location : ~1 AU from the sun*
Xbox Account
Xbox Live: No
Gamertag: Too poor to afford one
Clan Tag: Srsly
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye Is A Goober wrote:*Takes a breadboard and throws it at Eagle Eye307*
Ow!
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
Who is this anyways?
FlareonMaster- Ultimate Poster
- Posts : 21458
Points : 26560
Join date : 2009-09-02
Age : 30
Location : My House on Planet Earth
Xbox Account
Xbox Live: Yes
Gamertag: FlareonMaster
Clan Tag: V03
Re: Hola Peoplez: Hardware VS Software. Yep
FlareonMaster wrote:Who is this anyways?
I'm eagle eye307, just on another account to troll people
Stormageddon, Dark Lord- Lieutenant
- Posts : 120
Points : 4620
Join date : 2012-09-02
Age : 74
Location : ~1 AU from the sun*
Xbox Account
Xbox Live: No
Gamertag: Too poor to afford one
Clan Tag: Srsly
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye Is A Goober wrote:FlareonMaster wrote:Who is this anyways?
I'm eagle eye307, just on another account to troll people
You fail as an imposter. Why would I ever admit that?
FlareonMaster wrote:Who is this anyways?
Apparently he's Facebook friends with me, because his avatar is my profile picture with a troll face.
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye307 wrote:Eagle Eye Is A Goober wrote:FlareonMaster wrote:Who is this anyways?
I'm eagle eye307, just on another account to troll people
You fail as an imposter. Why would I ever admit that?
I knew I shouldn't have given you my main account password, Joe. But we have to end the trolling for now. So yeah, stop trying to hide it.
Stormageddon, Dark Lord- Lieutenant
- Posts : 120
Points : 4620
Join date : 2012-09-02
Age : 74
Location : ~1 AU from the sun*
Xbox Account
Xbox Live: No
Gamertag: Too poor to afford one
Clan Tag: Srsly
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye Is A Goober wrote:I knew I shouldn't have given you my main account password, Joe. But we have to end the trolling for now. So yeah, stop trying to hide it.
Wait, what?
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
It's Matt I bet.
FlareonMaster- Ultimate Poster
- Posts : 21458
Points : 26560
Join date : 2009-09-02
Age : 30
Location : My House on Planet Earth
Xbox Account
Xbox Live: Yes
Gamertag: FlareonMaster
Clan Tag: V03
Re: Hola Peoplez: Hardware VS Software. Yep
FlareonMaster wrote:It's Matt I bet.
I think it's cj because:
He used the word goober
Cj likes to troll and admitting it makes it look like someone else so you wouldn't expect it was really cj.
joehammer2009- Private
- Posts : 17
Points : 4571
Join date : 2012-06-14
Re: Hola Peoplez: Hardware VS Software. Yep
If it is C.J. then he just had an argument with himself about a topic only he would argue against about a topic the rest of us don't care about. haha
FlareonMaster- Ultimate Poster
- Posts : 21458
Points : 26560
Join date : 2009-09-02
Age : 30
Location : My House on Planet Earth
Xbox Account
Xbox Live: Yes
Gamertag: FlareonMaster
Clan Tag: V03
Re: Hola Peoplez: Hardware VS Software. Yep
FlareonMaster wrote:If it is C.J. then he just had an argument with himself about a topic only he would argue against about a topic the rest of us don't care about. haha
I assure you it is not me.
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye307 wrote:FlareonMaster wrote:If it is C.J. then he just had an argument with himself about a topic only he would argue against about a topic the rest of us don't care about. haha
I assure you it is not me.
Yeah, its not you, because I gave the password to that account to someone. I thought it was Joe, but now I'm not sure.
Stormageddon, Dark Lord- Lieutenant
- Posts : 120
Points : 4620
Join date : 2012-09-02
Age : 74
Location : ~1 AU from the sun*
Xbox Account
Xbox Live: No
Gamertag: Too poor to afford one
Clan Tag: Srsly
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye Is A Goober wrote:Eagle Eye307 wrote:FlareonMaster wrote:If it is C.J. then he just had an argument with himself about a topic only he would argue against about a topic the rest of us don't care about. haha
I assure you it is not me.
Yeah, its not you, because I gave the password to that account to someone. I thought it was Joe, but now I'm not sure.
Is his name A. Goober?
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
Yep, I'm right. I tried to log into Eagle Eye307, the original account, and I don't know the password. It was probably changed by whoever I gave my password to.
Stormageddon, Dark Lord- Lieutenant
- Posts : 120
Points : 4620
Join date : 2012-09-02
Age : 74
Location : ~1 AU from the sun*
Xbox Account
Xbox Live: No
Gamertag: Too poor to afford one
Clan Tag: Srsly
Re: Hola Peoplez: Hardware VS Software. Yep
either Jon or Cj trolling lol
Martin1346- Forum Fanatic
- Posts : 1440
Points : 7350
Join date : 2008-08-20
Age : 112
Location : Canada Eh?
Xbox Account
Xbox Live: No
Gamertag: iRx Jay Killer
Clan Tag: V69
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye Is A Goober wrote:Yep, I'm right. I tried to log into Eagle Eye307, the original account, and I don't know the password. It was probably changed by whoever I gave my password to.
LIES! Anyone who has been around the forums long enough should know that I already have a backup administrator account (Parrot Wing).
Eagle Eye307- SE Administrator
- Posts : 9864
Points : 15884
Join date : 2008-08-20
Age : 31
Location : Boston
Xbox Account
Xbox Live: Yes
Gamertag: Parrot Wing
Clan Tag: V01
Re: Hola Peoplez: Hardware VS Software. Yep
Eagle Eye307 wrote:Eagle Eye Is A Goober wrote:Yep, I'm right. I tried to log into Eagle Eye307, the original account, and I don't know the password. It was probably changed by whoever I gave my password to.
LIES! Anyone who has been around the forums long enough should know that I already have a backup administrator account (Parrot Wing).
It could be Matt, Cody, David or C.J. still. I honestly am not doing it, though it is something I probably would do if I thought of it. haha
Knowing me though I would have named the account "C.J's Crappy Server " haha
FlareonMaster- Ultimate Poster
- Posts : 21458
Points : 26560
Join date : 2009-09-02
Age : 30
Location : My House on Planet Earth
Xbox Account
Xbox Live: Yes
Gamertag: FlareonMaster
Clan Tag: V03
Re: Hola Peoplez: Hardware VS Software. Yep
It says Hola, it's cj
TerseRat5204- Captain
- Posts : 794
Points : 5647
Join date : 2011-12-28
Age : 26
Location : My Minecraft World!!
Xbox Account
Xbox Live: Yes
Gamertag: TerseRat
Clan Tag: V21
Page 1 of 4 • 1, 2, 3, 4
Page 1 of 4
Permissions in this forum:
You cannot reply to topics in this forum