You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'RUDE'

We found 5,110 matches.


<< < > >>

Viewing 1-30 of 5,110 matches. 1 | 2 | 3 | 4 | 5 | 6 | 789171

1.

None

Topic: Is an iPod really worth it?

Posted: 11/17/04 07:13 PM

Forum: General

It was one of the first and only things that I purchased for myself after getting my new job, not to mention the most expensive, but it's going to last me for many many years. I love it, can't wait to get enough bread to cop a apple computer. Its well worth the money.


2.

None

Topic: New Korn and Jay-z Song?

Posted: 11/08/04 03:13 PM

Forum: General

I heard a new Jay-Z linkin Park mash up last night on the radio. I liked it.


3.

None

Topic: I'll walkie talkie you.

Posted: 11/07/04 09:28 AM

Forum: General

At 11/7/04 09:23 AM, dawsdani wrote: i wouldnt have thought a walkie talkies range would be big enough to talk to anyone else.

From what I hear, whith nextels you can get people from other states in the United States, for sure.


4.

Happy

Topic: I'll walkie talkie you.

Posted: 11/07/04 09:22 AM

Forum: General

I Should be getting a nextel phone by next week hopefully, I thought that it would be pretty funny to walkie talkie other members of Newgrounds who have nextel phones.

I'll bump the thread when I cop.


5.

None

Topic: Gta:Sa Crap?

Posted: 11/07/04 09:20 AM

Forum: General

At 11/6/04 05:53 PM, Baron_Von_Bad_Guy wrote: as well as a great variety of good music to listen to.

Are the radio stations as good as Vice City?


6.

None

Topic: Eminem's Last Album

Posted: 11/02/04 12:01 PM

Forum: General

He's rich enough, he doesn't have to make another record for as long as he lives. He must not have such a passion for writing anymore I guess.


7.

Angry

Topic: Floridiots at it again!!

Posted: 10/28/04 02:35 PM

Forum: General

http://news.bbc.co.uk/2/hi/americas/3960679.stm

They're going to ruin everything for Kerry, if they have it their way!!


8.

None

Topic: So whose played the new GTA?!?!?

Posted: 10/28/04 02:10 PM

Forum: General

At 10/28/04 02:08 PM, dawsdani wrote: how can you not find anything in the 100000000 other topics. anywho i havent played on it, as i refuse to conform.

Why not just post the link then n00b!


9.

None

Topic: So whose played the new GTA?!?!?

Posted: 10/28/04 02:07 PM

Forum: General

I tried searching topics but didn't see anything surprisingly. It has comer out hasn't it???


10.

None

Topic: I shaved for Shrapnel ...

Posted: 10/24/04 09:44 AM

Forum: General

What have you done with _altr_ ? Give him back to us now!!


11.

None

Topic: Bush=Kerry There related!

Posted: 10/19/04 03:07 PM

Forum: General

One looks like lurch, the other looks like an idiotic monkey, I can see the relationship


12.

Shouting

Topic: Goldie Lookin chain!

Posted: 10/19/04 03:03 PM

Forum: General

Your mother's got a penis!

Funniest song in the whole wide world. I can't stop laughing just thinking about that darn song.

What's your funniest song, if you have one


13.

None

Topic: Doesn't Wade look a little bit like

Posted: 10/14/04 11:47 AM

Forum: General

At 10/14/04 11:44 AM, darkmaster2000 wrote: Ive always thought he looks like Ali G.

I think you're onto somthing.


14.

Questioning

Topic: Doesn't Wade look a little bit like

Posted: 10/14/04 11:35 AM

Forum: General

....Dave Grohl?

Well somtimes, like in this picture. Just thought I'd something different to the....Oh Wade LOOks Like TOm GReEn! thing

Doesn't Wade look a little bit like


15.

Happy

Topic: mods

Posted: 10/08/04 01:33 PM

Forum: General

I think they both have somthing called a life to attend to.

END!


16.

Happy

Topic: My Friend : iPod problem

Posted: 10/08/04 01:30 PM

Forum: General

I think he might be able to use Real networks/Realplayer for his iPod also.


17.

None

Topic: They have killed Ken Bigley

Posted: 10/08/04 01:21 PM

Forum: General

I would have at least thought that they would have had mercy on him considering the amount of time that they kept him alive. I just hope that nothing like this happens again. I just discovered last week that a female couisin of mine was deployed to Iraq, I was totally shocked. We have to get out of there soon.


18.

None

Topic: I need some ideas

Posted: 09/27/04 06:33 PM

Forum: Programming

Hey borg, you know what's wrong with it?


19.

None

Topic: I need some ideas

Posted: 09/25/04 02:00 PM

Forum: Programming

Pyy no attention to the 2 "Printdata" functions, I accidentally put those in there.


20.

None

Topic: I need some ideas

Posted: 09/25/04 01:59 PM

Forum: Programming

# include <stdio.h>
# include <string.h>

typedef struct Rec{
char last[20];
char first[20];
}Pb_Rec;

Pb_Rec Phone_Book[1],temp[1];

void Addrecords();
void Sortnames();
void Printdata();

int main()
{

int options;

do{
printf("1)Add records to database\n");
printf("2)Sort database\n");
printf("3)Print database\n");

do{
scanf("%d",&options);
switch(options){
case 1:Addrecords(Phone_Book);
break;
case 2:Sortnames(Phone_Book,temp);
break;
case 3:Printdata(Phone_Book);
break;
case4:exit(1);
default:printf("Invalid Input:Try again");
}
}while(options>3||options<1);
}while(1);

return 0;
}

void Addrecords()
{

int i;

for(i=0;i<2;i++){
printf("Please enter the last name\n");
scanf("%s",&(Phone_Book+i)->last);
printf("Please enter the first name\n");
scanf("%s",&(Phone_Book+i)->first);
}

return;
}

void Sortnames()
{

int i;

for(i=0;i<1;i++){
if(strcmp(Phone_Book[i].last,Phone_Book[i+1].last)==-1)
temp[i]=Phone_Book[i+1];
printf("%s",temp[i].last);
Phone_Book[i+1]=Phone_Book[i];
Phone_Book[i]=temp[i];
}

return;
}

void Printdata()
{

int i;

for(i=0;i<2;i++){
printf("%s\t",Phone_Book[i].last);
printf("%s\t\n",Phone_Book[i].first);
}

return;
}

void Sortnames()
{

int i;

for(i=0;i<1;i++){
if(strcmp(Phone_Book[i].last,Phone_Book[i+1].last)==-1)
temp[i]=Phone_Book[i+1];
printf("%s",temp[i].last);
Phone_Book[i+1]=Phone_Book[i];
Phone_Book[i]=temp[i];
}

return;
}

void Printdata()
{

int i;

for(i=0;i<2;i++){
printf("%s\t",Phone_Book[i].last);
printf("%s\t\n",Phone_Book[i].first);
}
return;
}

I also have to put to have a phone number integer array in there too but I'll do that after this problem is fixed.


21.

None

Topic: I need some ideas

Posted: 09/25/04 12:05 PM

Forum: Programming

At 9/24/04 03:38 PM, JesusCyborg wrote: -------------- do this ---------------

Pb_Rec Phone_Book[20];
Pb_Rec temp;

temp = Phone_Book[i];
Phone_Book[i] = Phone_Book[i+1];
Phone_Book[i+1] = temp;

that way you shouldn't have any problems with your temp. if this isn't the case just give me the source again

That's exactly what I currently have but it doesn't seem to be working at all.


22.

None

Topic: I need some ideas

Posted: 09/24/04 12:16 PM

Forum: Programming

Got any ideas borg? My temp variable seems to losing what I"m assigning it, unless I have to initialize it with some values before I do anything.


23.

None

Topic: I need some ideas

Posted: 09/23/04 02:39 PM

Forum: Programming

I tried what I had in my last post and it appears to have worked, only, it doesn't see to be printing the value in Phone_Book[i+1].last or even Phone_Book[i+1].first, I'm not sure why, it could be because some memory is lost in my temp variable. I almost have it though, just need to figure out what's wrong.


24.

None

Topic: I need some ideas

Posted: 09/23/04 01:54 PM

Forum: Programming

I just realised that because I have to print the array of structures out in alphabetical order according to last name that I actually have to interchange an whole element with another so could I actually do this:

Pb_Rec temp[0];

temp[i]=Phone_Book[i];
Phone_Book[i]=Phone_Book[i+1];
Phone_Book[i+1]=temp;

Would it make sense? At the moment I'm not recieving any error messages or warnings.


25.

None

Topic: Nephthys is now a mod.

Posted: 09/23/04 11:34 AM

Forum: General

Its about time. New female MODS are sweet.


26.

Happy

Topic: I need some ideas

Posted: 09/23/04 11:31 AM

Forum: Programming

At 9/22/04 06:37 PM, JesusCyborg wrote: Don't declare temp as "char *temp;". That just gives you a pointer with no memory. Declare it like this: "char temp[20]"

strcpy(temp, Phone_Book[i].last);
strcpy(Phone_Book[i].last, temp);

don't forget to include <string.h>!!!

Thanks borg, I finally discovered what I was supposed to do last night, thanks anyway dude. :)


27.

Questioning

Topic: I need some ideas

Posted: 09/22/04 02:18 PM

Forum: Programming

I want to sort the last name array in my structure, but I need some ideas on either how I can do this, or, how I can fix what I already have.

To get a better idea of what I have here is what I have.

typedef struct Rec{
char last[20];
char[first[20];
int number[11];
}Pb_Rec;

Pb_Rec Phone_Book[20];

So that's my structure, as well as the array of structures.

Now I have a function called Sortnames, that is suppposed to sort the last array in each structure array. This is what I have for that function so far.

int i;
char *temp; /*I'm not sure what I'm supposed to declare temp as.*/

for(i=0;i<3;i++){
if(strcmp(Phone_Book[i].last,Phone_Book[i+1].last)<0)
break;
else
if(strcmp(Phone_Book[i].last,Phone_Book[i+1].last)>0)
*temp=Phone_Book[i].last;
Phone_Book[i].last=Phone_Book[i+1].last;
Phone_Book[i+1].last=temp;

THIS isn't working for some reason, its telling me about incompatible types which I'm assuming is reffering to the two array elements in my array of structures.

Cou8lkd anyone give me any pointers on what I can do to fix this?


28.

None

Topic: where is Bin Laden

Posted: 09/16/04 09:46 AM

Forum: General

Dude, I'm really not sure how much that'll sway voters who hate his guts.


29.

Happy

Topic: 40gb iPod Product Review

Posted: 08/16/04 12:31 PM

Forum: General

I got the 20 gb one myself. Its sweet as fuck alright, I have the one with everything on the one click wheel, menu button, play/pause and the fast forward rewind buttons. I got about 183 songs on it at the moment. Glad you got one Steve.


30.

None

Topic: I had to share this.

Posted: 08/12/04 02:38 PM

Forum: General

I'm not sure if any of you ever came across this but I just read it and its pure genious:

Black folks:
When I born, I black.
When I grow up, I black.
When I go in sun, I black.
When I cold, I black.
When I scared, I black.
When I sick, I black. And when I die, I still black.

White folks...... When you born, you pink.
When you grow up, you white.
When you go in sun, you red.
When you cold, you blue.
When you scared, you yellow.
When you sick, you green.
When you bruised, you purple.
And when you die, you gray.
So who you callin' colored


All times are Eastern Standard Time (GMT -5) | Current Time: 03:24 PM

<< < > >>

Viewing 1-30 of 5,110 matches. 1 | 2 | 3 | 4 | 5 | 6 | 789171