Be a Supporter!
Response to: Dreamweaver Basic Tutorial Posted October 16th, 2008 in Programming

At 10/16/08 10:12 PM, Super-Yombario wrote: The color statements were depricated? And it takes much less time to do it inside the HTML tag.

Wait until you code a large page, and you have to search for hours finding one little tag. :)

Response to: Programming Regs Lounge Posted October 16th, 2008 in Programming

I haven't seen you post crap and you are kinda nice for as far as i know so you satisfy both of my criteria for all i care :D

I can be REALLY nice if I need to be.

Cool then, thanks. I guess I needed to hear (read) that for some reason. :S

Response to: Dreamweaver Basic Tutorial Posted October 16th, 2008 in Programming

At 10/16/08 10:09 PM, Super-Yombario wrote: What the hell? Dude, you single me out like this? Name one way that I taught him a bad habit? I said DON'T use tables, I taught him how to use the color statements inside tags, bla bla. What was ONE bad thing I said?

All of what you said was bad.

You need to use CSS, not crap like, <p color="blah">.

Well, considering that's our regimen around here, anyway.

Response to: Programming Regs Lounge Posted October 16th, 2008 in Programming

You need to post a lot of good information and be liked by at least a few regs.
Both are lacking for him.

I back THIS statement up.

Do you guys consider me a reg at all? I really dunno if you do. If you don't, I understand why, I'm just curious. :S
Response to: Custom Forum Creation Posted October 16th, 2008 in Programming

At 10/16/08 07:44 PM, Super-Yombario wrote: Look at my posts, douche.

I wont argue with you, it's pointless. I'm not trying to be rude, or sound angry either. I'm merely saying that, you know, you were the retard in this topic being non-helpful. You came in insulting his intelligence and stuff, and it doesn't give a great impression. My apologies.

Response to: Search Bar... again... Posted October 16th, 2008 in Programming

At 10/16/08 07:41 PM, Super-Yombario wrote: Oh, right, I forgot old Ctrl+F. But, the tags may not specifically be written plainly on the page, so Ctrl+F wouldn't be as good.

Ctrl+F doesn't search for tags. It searches for actual text.

Response to: Custom Forum Creation Posted October 16th, 2008 in Programming

At 10/16/08 07:07 PM, Super-Yombario wrote: I know more than you in this situation, quite clearly. As well, you've got the nerve to go and post something not only in a new topic, but also in my topic about how to do something that involves code, which by this post and the one you gave me you know none about.

People like you should really just leave. You're calling him an idiot, and you didn't understand what an anchor was! I can't understand why you'd say he's stupid, because if you look up past topics, you will clearly see, he's not as retarded as you are.

Also, we tend to somewhat joke around in this forum, and if you can't take a joke, or a tiny joke, you can leave.
Response to: Search Bar... again... Posted October 16th, 2008 in Programming

At 10/16/08 07:04 PM, Super-Yombario wrote: Sigh... what the fuck do you think I'm doing? I don't want them to search Google for something on the web page. I want the search bar to anchor the item that fits the search words. Stop trying to sway me into some fucking PHP system, I just want to know how to anchor things with a search bar in HTML.

If you'd stop being so arrogant, and you'd cooperate, you might learn something. Also, learn to read. He never mentioned google, he mentioned the BROWSER SEARCH FUNCTION, which, for your reference, is usually Ctrl+F. You can type in anything you can imagine, and try to find it on the web page. He's saying it's pointless to recreate something already useful.

Response to: looking for a mentor Posted October 14th, 2008 in Programming

At 10/14/08 09:10 PM, ransha wrote: for the last year or so, iv been trying to make a website, however, so far iv been unsuccessful, i find it very hard to learn from the internet, and i was wondering if there was anyone that would be willing to teach me php/html/css. one of those languages, it would be a big help!

If there's money involved, sure, we'd be happy to. Otherwise, I don't think I would want to take time out of my day for free, when I could be earning money, to teach someone else how to steal my money. :)

Response to: Customise your main userpage! Posted October 13th, 2008 in NG News

Thanks :D

Response to: Newgrounds Stick Am Posted October 10th, 2008 in General

gg, Jade. and you guys were like "OMG NEED GIRLS".

Well, we need them!

Everyone get on, even without a cam, it's quite fun!

Response to: Help with my online music player Posted October 10th, 2008 in Programming

Well, you would generally be right, but Flash actionscript questions should go to the Flash Forum.

Flash Forum

Response to: C++ Euler Problem Help Posted October 9th, 2008 in Programming

At 10/9/08 09:48 PM, authorblues wrote: so many things to mention, i dont know where to start.

Wow, that's a great explanation. Thanks so much, I was hoping you'd reply. I hate being retarded. :)

Anyway, neat, thanks. I'll fix it. :)

It's nice to have someone else with a fresh head to explain things. :)

C++ Euler Problem Help Posted October 9th, 2008 in Programming

Ok, I've googled myself nuts over this, and I guess I don't understand the math behind it.

I'm doing the Euler Project Problem number 7:

By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.

What is the 10001st prime number?

I know the correct answer from examining other code, and I still want my own solution, and so I've come up with more stuff for myself, and this is what I have right now:

#include <iostream>

#include <math.h>

using namespace std;

enum prime {PRIME, NOT_PRIME, ERR};

prime isPrime(unsigned int n);

int main(int argc, char argv[])

{
   unsigned int prime_num, num_loop, i;

   for ( i = 3, num_loop = 0 ; num_loop < 10065 ; i +=2 )

   {

      if ( isPrime ( i ) == PRIME )

      {

         num_loop++;

         prime_num = i;

      }

      if ( isPrime ( i ) == NOT_PRIME )

      {

         continue;

      }

   }

   cout << "PRIME BLAH: " << prime_num << endl;

   cin.get();

   return ( 0 );

}

prime isPrime(unsigned int n)

{

   int divider = 2;

   if (n == 0)

   {

      return ERR;

   }

   if (n == 1)

   {

      return ERR;

   }

   if (n == 2)

   {

      return PRIME;

   }

   for ( divider ; divider < 10 ; divider ++ )

   {

      if ( n % divider == 0 )

      {

         return NOT_PRIME;

      }

   }

   return PRIME;

}

I know it's not the best code in the world, but I'm using some things I've been learning recently, to really see what I know.

Anyway, I figure, if a number is even, it's not prime. Shouldn't numbers divisible by the numbers 2-9 also not be prime? If so, then my isPrime() should check for it, but I keep getting WAY off answers for this. I get like 43,xxx, and the answer is like, 104,xxx. I don't know what's exactly wrong, and I apparently don't understand it well enough to know how the math works.

If someone could point out what I'm doing wrong, I'd really appreciate it, and a good explanation of a great solution would help too. I'm so lost right now, and I've spent the past 3 hours of my life messing with this, trying to get it to work.

So, hopefully, you experts can help a newbie out. I don't mind learning some new methods that are simpler either.

Response to: Programming Regs Lounge Posted October 9th, 2008 in Programming

At 10/9/08 03:56 PM, Jon-86 wrote:
At 10/9/08 03:19 PM, smulse wrote: Do it, and we'll submit it to some social bookmarking websites and 'cause a big hoax.
And so an evil scheme was hatched. Enjoy the panic you spread if you actually see though your devious plot.

It's all pointless fun, of course.

Also, yea, the $40 per server pointed it out, great job though. Make the site! :D

I suppose citricsquid gets to live. Next time, there's always next time.
Response to: Programming Regs Lounge Posted October 9th, 2008 in Programming


page-(
text color<#000>
background<#FFF>
text position<middle>
spacing<0>
)
*content-(
text drop shadow<3>
gradient<blue to red>
bevel<4>
text flashing<#FFF to #000><quick>
)

If that's a joke, awesome job, I started laughing as soon as I saw it.

If that's not a joke, then I'm going to shoot citricsquid.

For his sake, you'd better be lying.
Response to: how do i make an image board Posted October 9th, 2008 in Programming

Then you should've stopped, and carry it on in another thread in the General section

The General thread is spammed enough, and it doesn't need programming topics, or our random spam either.

Response to: Processing Posted October 8th, 2008 in Programming

At 10/8/08 09:45 PM, Minglle wrote: I am trying to learn flash, then I came across a programming language called Processing (powered by Java), and I'm just wondering if anyone can give me tips.
I have a book, but I just need more help.

Why not try google occasionally?

We're a last resort, use google and find what you're looking for first. :)

When you're super-stuck, then come ask us. :)

Response to: how do i make an image board Posted October 8th, 2008 in Programming

At 10/8/08 08:51 PM, Fullsteel wrote: You guys are supposed to answer the question instead of getting off topic...

I think we gave up since the OP hasn't really said anything else.

Never been to 4chan, never want to go there.
Response to: Some Help me(about a proj in flash) Posted October 8th, 2008 in Programming

At 10/8/08 07:16 AM, dakness1234 wrote: PLS!!!! some one help me
i have a proj about flash, (to make a Game in flash)
my idea of a game is..... hhmmmm fish that eat smaller fish ^_~
and it makes the fish bigger every tym it eats get it?

my 1st quest is how can i controll the fish by mouse movement?

When it's a FLASH question, you go to the FLASH forum.

:)

Response to: how do i make an image board Posted October 7th, 2008 in Programming

At 10/7/08 06:22 AM, Pasty-Flawss wrote: I'm pretty sure he's just joking

Are you?

Response to: You Laugh You Lose Posted October 6th, 2008 in General

At 10/6/08 06:55 PM, j2witz wrote: I wish I could just empty out my folder here....

I call you and raise you a:

You Laugh You Lose

Response to: You Laugh You Lose Posted October 6th, 2008 in General

At 10/6/08 06:55 PM, j2witz wrote: I wish I could just empty out my folder here....

I'm crying now. I hope you're all happy. OMG WOW.

Response to: You Laugh You Lose Posted October 6th, 2008 in General

At 10/6/08 06:53 PM, j2witz wrote: dude, I am a win at this

Shoot. I hate you. I don't even know why, I just do.

Response to: You Laugh You Lose Posted October 6th, 2008 in General

At 10/6/08 06:42 PM, Dier1231 wrote: that was funny, but i only smiled ;)

Yea, I smiled. Give us something funnier. xD

Response to: Visual C++ problem, please help! Posted October 5th, 2008 in Programming

Depends on which version you download, the nightly builds are just the IDE but the main download includes everything.

Good point. I forgot about that. :S Thanks. :)

Response to: Visual C++ problem, please help! Posted October 5th, 2008 in Programming

At 10/5/08 12:06 PM, RyanPridgeon wrote: You should use Codeblocks, it's awesome.

Code::Blocks is just an IDE, but, for an IDE, it is nice. You'll still need a compiler for it. :)

Response to: Super Mario Kart commercial... Posted October 5th, 2008 in Video Games

At 9/29/08 12:53 AM, Jackotrades wrote: Nostalgic aint it?

I wasn't born when the commercial was out, but that game rocked. My first Mario Kart game, and I played it so much, I broke it. Fantastic game.

Response to: Top 10 ways to be original Posted October 4th, 2008 in General

If we all followed your rules of originality, we wouldn't be original any more, would we?

Response to: Programming Regs Lounge Posted October 2nd, 2008 in Programming

At 10/2/08 06:57 AM, Jessii wrote:
At 10/1/08 11:10 PM, thoughtpolice wrote: Total fucking update:
Kick ass! That's great! Good luck!

Agreed. Instead of saying "Good Luck," I'll say..."Good Skill?"

Anyway, definitely go for it thoughtpolice, you're brilliant, so I have no doubts for you. ;)