Shining Epiphany
Would you like to react to this message? Create an account in a few clicks or log in to continue.

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 1, 2, 3, 4  Next

Go down

Hola Peoplez: Hardware VS Software. Yep Empty Hola Peoplez: Hardware VS Software. Yep

Post by Stormageddon, Dark Lord Sun Sep 02, 2012 10:23 am

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
Stormageddon, Dark Lord
Lieutenant
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

http://walkingdead.net/perl/euphemism

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 10:24 am

I beg to differ, good sir. Monopoly
Eagle Eye307
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by FlareonMaster Sun Sep 02, 2012 10:24 am

I always thought C.J was a goober.
FlareonMaster
FlareonMaster
Ultimate Poster
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

https://www.youtube.com/JonOlson94

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by joehammer2009 Sun Sep 02, 2012 10:24 am

Hardware IS better than software. SO TRUE

joehammer2009
Private
Private

Posts : 17
Points : 4571
Join date : 2012-06-14

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 10:28 am

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. Monopoly

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. Razz
Eagle Eye307
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Stormageddon, Dark Lord Sun Sep 02, 2012 10:55 am

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. Monopoly

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. Razz
Hola Peoplez: Hardware VS Software. Yep Resist11
Stormageddon, Dark Lord
Stormageddon, Dark Lord
Lieutenant
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

http://walkingdead.net/perl/euphemism

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 10:59 am

Eagle Eye Is A Goober wrote:Hola Peoplez: Hardware VS Software. Yep Resist11

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
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Stormageddon, Dark Lord Sun Sep 02, 2012 11:04 am

Eagle Eye307 wrote:
Eagle Eye Is A Goober wrote:Hola Peoplez: Hardware VS Software. Yep Resist11

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
Stormageddon, Dark Lord
Lieutenant
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

http://walkingdead.net/perl/euphemism

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 11:07 am

Eagle Eye Is A Goober wrote:*Takes a breadboard and throws it at Eagle Eye307*

Ow!
Eagle Eye307
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by FlareonMaster Sun Sep 02, 2012 11:10 am

Who is this anyways?
FlareonMaster
FlareonMaster
Ultimate Poster
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

https://www.youtube.com/JonOlson94

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Stormageddon, Dark Lord Sun Sep 02, 2012 11:12 am

FlareonMaster wrote:Who is this anyways?

I'm eagle eye307, just on another account to troll people
Stormageddon, Dark Lord
Stormageddon, Dark Lord
Lieutenant
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

http://walkingdead.net/perl/euphemism

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 11:15 am

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? Lulz

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
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Stormageddon, Dark Lord Sun Sep 02, 2012 11:16 am

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? Lulz

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
Stormageddon, Dark Lord
Lieutenant
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

http://walkingdead.net/perl/euphemism

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 11:24 am

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
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by FlareonMaster Sun Sep 02, 2012 11:34 am

It's Matt I bet.
FlareonMaster
FlareonMaster
Ultimate Poster
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

https://www.youtube.com/JonOlson94

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by joehammer2009 Sun Sep 02, 2012 11:50 am

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
Private

Posts : 17
Points : 4571
Join date : 2012-06-14

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by FlareonMaster Sun Sep 02, 2012 12:04 pm

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
FlareonMaster
Ultimate Poster
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

https://www.youtube.com/JonOlson94

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 12:13 pm

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
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Stormageddon, Dark Lord Sun Sep 02, 2012 12:15 pm

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
Stormageddon, Dark Lord
Lieutenant
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

http://walkingdead.net/perl/euphemism

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 12:16 pm

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
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Stormageddon, Dark Lord Sun Sep 02, 2012 12:19 pm

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
Stormageddon, Dark Lord
Lieutenant
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

http://walkingdead.net/perl/euphemism

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Martin1346 Sun Sep 02, 2012 12:23 pm

either Jon or Cj trolling lol
Martin1346
Martin1346
Forum Fanatic
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

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Eagle Eye307 Sun Sep 02, 2012 12:24 pm

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). Cool
Eagle Eye307
Eagle Eye307
SE Administrator
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

http://shiningepiphany.com

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by FlareonMaster Sun Sep 02, 2012 1:00 pm

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). Cool

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
FlareonMaster
Ultimate Poster
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

https://www.youtube.com/JonOlson94

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by TerseRat5204 Sun Sep 02, 2012 1:04 pm

It says Hola, it's cj
TerseRat5204
TerseRat5204
Captain
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

Back to top Go down

Hola Peoplez: Hardware VS Software. Yep Empty Re: Hola Peoplez: Hardware VS Software. Yep

Post by Sponsored content


Sponsored content


Back to top Go down

Page 1 of 4 1, 2, 3, 4  Next

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum