Be a Supporter!
Response to: Airline Food Posted October 24th, 2013 in General

At 10/24/13 02:03 AM, yurgenburgen wrote:
At 10/24/13 01:59 AM, MrSoxfan wrote: What's the point of airline food anyway? Can't you just wait until the flight is over to eat?
ya I'll just sit for eleven hours and not consume anything

11 hours man isn't much. Just drink some water.

Response to: What do you think of Fasting? Posted October 20th, 2013 in General

At 10/19/13 02:02 PM, argile wrote:
At 10/11/13 02:09 PM, Rawnern wrote: Ey mayne... you wanna try this intermittent fasting? That's good man... real good!

http://www.youtube.com/watch?v=hzfsaXsV-T4
So how's that suppose to work exactly what with a smaller eating period all that,it doesn't like slow the Metabolism down a bit?

No. When you aren't eating all day, your body is bound to go to your fat stores for energy (In a caloric deficit). It helps controlling hunger too. Only thing that is going to slow your rate of burning calories it by not exercising. The reason why we are getting fatter is because... simply: WE ARE EATING TOO FUCKING MUCH! :)

Response to: What do you think of Fasting? Posted October 11th, 2013 in General

Ey mayne... you wanna try this intermittent fasting? That's good man... real good!

http://www.youtube.com/watch?v=hzfsaXsV-T4

Response to: Visual Basic vs C# Posted October 11th, 2013 in Programming

At 10/10/13 11:17 AM, WoogieNoogie wrote: Either way, you should stop using Visual Basic cause it sucks :P

It's a pretty good way to learn programming for beginners.

Response to: A True gentleman... Posted October 1st, 2013 in General

At 10/1/13 04:55 AM, VJF wrote: A true gentleman doesn't refer to women as bitches.

^this

Response to: A Yawn Just Put Me In Hospital Posted September 24th, 2013 in General

At 9/23/13 04:40 PM, 24901miles wrote: Wow, that shit was boring to read. *yawn*

*Crack*

Response to: Girls on NG. Posted September 22nd, 2013 in General

I don't know. I think it's because the majority of the people here are male gender. It's like being in a class with only guys and then a girl steps in. Or the complete opposite. Some other reason might be that a lot of people here are lonely or don't have chance on girls IRL. That's just IMHO...

Response to: new simpsons = better than old simp Posted September 6th, 2013 in General

Some episodes are still pretty good. Mostly all shows die out/get worse ideas after a while...

Response to: What if being straight was gay... Posted September 6th, 2013 in General

That was mindphuk...

Response to: "To all Lurkers.." Posted September 4th, 2013 in General

Why post when you don't have anything to say? Like now, lol.

Response to: Ads that piss you off? Posted September 3rd, 2013 in General

Ads before watching a video on YouTube.

Response to: What Brought You To Newgrounds? Posted August 24th, 2013 in General

Games and movies mostly.

Response to: How Much Soda Do You Drink? Posted August 20th, 2013 in General

Varies a lot... if I'm really active I usually have soda or some sugary drink.

Response to: sometimes I just wanna Posted August 15th, 2013 in General

Who wants to be fat? lol

Response to: ★Unicode★ Posted August 13th, 2013 in NG News

Finally :) thanks.

Response to: Helping a homeless man Posted August 2nd, 2013 in General

At 8/2/13 06:18 AM, GIaceon wrote: who gives a shit you fucking faggot, when's the last time you gave a bum on the street a dollar, you piece of shit

Charity is good, but he makes a ton of money because of the video.

Helping a homeless man Posted August 2nd, 2013 in General

Is he only doing it for views? What do you guys think?

http://www.youtube.com/watch?v=rsIOoXG_gmo

Response to: Your dream job? Posted July 5th, 2013 in General

Actor.

Response to: how tall are you Posted June 28th, 2013 in General

5'10" / 1.78m and I'm still growing.

Michael Cera Posted June 18th, 2013 in General

This is Hitler's mother and the actor Michael Cera. They look pretty much the same to me... what do you think?

Michael Cera

Response to: Longest ever stayed awake? Posted June 16th, 2013 in General

I usually stay up like 24 hours on lan parties and things like that... But no longer cause I need sleep more than most people, lol.

Response to: Stats for nerds Posted June 15th, 2013 in General

At 6/15/13 09:56 AM, Gimmick wrote:
At 6/15/13 09:16 AM, Rawnern wrote:
At 6/15/13 08:37 AM, infamoss wrote:
At 6/15/13 08:32 AM, Gimmick wrote: Oh you, youtube...
oh you
Lol xD
I don't get it...is it my stats for nerds?
i'm a bit slow, gimme some time

High post count, brah. Lol :)

Response to: Stats for nerds Posted June 15th, 2013 in General

At 6/15/13 08:37 AM, infamoss wrote:
At 6/15/13 08:32 AM, Gimmick wrote: Oh you, youtube...
oh you

Lol xD

Response to: What are the software options? Posted June 12th, 2013 in Programming

What platform are you thinking about? Web programming, Flash, desktop, 3D/2D games etc...

Do you have a spesific programming language in mind?

How experienced are you with programming?

Response to: Text Adventure: cross platform lang Posted June 12th, 2013 in Programming

Not sure if I understand you correctly. hope im right.

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

int main ()
{
   char path[80];
   while(1)
   {
        scanf("%s", path);
        if(strcmp (path,"up") == 0 || strcmp (path,"down") == 0)
        {
           break;
        }
        getchar();
   }
  // This code will be executed if the user types either up or down.
   return 0;
}

why it didn't work:

this condition will not be false - only true
while(strcmp (path,"one") != 0 || strcmp (path,"two") != 0)

No need to scan with an & before the variable path :)

Response to: Why Is Ronald Mcdonald Creepy? Posted June 12th, 2013 in General

Clowns are scary.

Response to: Text Adventure: cross platform lang Posted June 7th, 2013 in Programming

At 6/7/13 04:01 AM, Filarius wrote: I really not get what exactry problem you have.
Sorry me for not writing on C looong ago, but I think what :
strcmp (path,"up") != 0 || strcmp (path,"up") != 0
is equal if you write only
strcmp (path,"up") != 0
also I prefer to write each boolean statment in brackets, just to be sure program will work in way I want
Is it only part of code? You compare path with "up", but I do not see any place you write to path anything

Oh my. It was meant to say strcmp (path,"up") != 0 || strcmp (path,"down") != 0

Response to: Please review my registration syste Posted May 30th, 2013 in Programming

Good, but if you want to you can improve the design slightly. Make the font slightly bigger. Also: If you can, find a better placement for the ads, the page look itself gets a minus.

Nice effect for your input boxes:
http://stackoverflow.com/questions/5670879/css-html-create-a -glowing-border-around-an-input-field

Maybe use a nice font from Google fonts:
http://www.google.com/fonts#UsePlace:use/Collection:Lato
http://www.google.com/fonts#UsePlace:use/Collection:Open-San s

Response to: Newgrounds changes all the time ... Posted May 30th, 2013 in General

At 5/25/13 02:55 PM, Nijko wrote: I'll probably have no time to go on this website

Don't leave :(

Response to: Verizon Customers, Grey Site Posted May 30th, 2013 in NG News

Well... it actually looks pretty cool. The orangish color is good though. Post an example and show us?