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: 'RageOfOrder'

We found 6,343 matches.


<< < > >>

Viewing 1-30 of 6,343 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7109212

1.

None

Topic: The Unofficial Newgrounds.com Irc

Posted: 11/06/09 06:37 PM

Forum: General

At 11/6/09 06:34 PM, k6ka wrote: I'm not going to download an IRC client!

Well then you're a wuss. How about a firefox extension?

ChatZilla can be installed as a firefox extension and run in your browser.


2.

None

Topic: The Unofficial Newgrounds.com Irc

Posted: 11/06/09 06:25 PM

Forum: General

Windows: X-Chat
Linux: X-Chat
Any: IRSSI

gogogogo


3.

None

Topic: Microsoft compulsory updates? Wtf?

Posted: 11/06/09 04:48 PM

Forum: Programming

At 11/6/09 03:18 PM, Jon-86 wrote: An interview via MSN.... I feel old :[

Hey! You're not a real girl!

Yes I am, can't you see my pink text?

Oh MSN.....


4.

None

Topic: Php Regular Expressions

Posted: 11/05/09 04:14 PM

Forum: Programming

And if you really want to prevent them from using spaces, chance the uses of . to [^\s] and the [^@] to [^@\s]


5.

None

Topic: Php Regular Expressions

Posted: 11/05/09 04:13 PM

Forum: Programming

Honestly, what do you care if someone enters an invalid e-mail address? It's their own stupidity.

/^[^@]+@.+\...+$/

Done.


6.

None

Topic: Is ubuntu worth it?

Posted: 11/03/09 04:37 PM

Forum: Programming

At 11/3/09 04:07 PM, urbn wrote: A Serif font on your task bar, eww.

I'm rebelling against Helvetica.
Or I'm just lazy when it comes to font selection. Take your pick.

I did a :P as my post mood because I wasn't serious.

But I prefer to not use a big desktop manager like KDE or Gnome, and go for just using Openbox with Tint2 and Nitrogen.

I started with Fluxbox but I am a bit of an information whore and when it's harder to check something that I want (Like my wifi strength on the school's shitty wireless) than simply glancing, I get tired of minimal designs and want more.

Plus KDE4 can be extremely pretty if you put a little time into it, and that makes it easy to stop my friends from believing that linux is 10 years in the past and ugly as a derailed train smashing through an old folks home


7.

None

Topic: Is ubuntu worth it?

Posted: 11/03/09 04:01 PM

Forum: Programming

At 11/3/09 03:41 PM, urbn wrote: Eww, KDE...

Oh yes. So ugly.

Is ubuntu worth it?


8.

None

Topic: Screencaps of upcomming projects?(2

Posted: 11/03/09 01:05 PM

Forum: Programming

I've been working on an IRC bot in Perl for months (Since January?)
I guess IRC bots don't really stack up against an operating system as a project, but oh well.

It needs some optimization still, but the featureset is pretty nice.
- Plenty of hard-coded commands directed at channel management, etc
- Command aliases (Multiple names for any command)
- Custom Commands (Build your own commands with custom args, using any of the hard coded commands)
-> Required arguments
-> Optional arguments
-> Defaults for unspecified optional args
- Last.FM nowplaying information
- Random FML grabber
- Stats tracking
- Custom timer system
- Points/Awards system
- Use of several variables ($noun, $adjective, $chan, $nick, etc) useable in all commands
- Dictionary system for items and for users
- 4 types of automated spam detection
- Two regex filter commands (Nick and Text filters)
- Regex supported for all appropriate commands (Kick, Ban, etc)
- Automated channel ban management (Set a default and maximum ban time for your channel, automatically expired by the bot)
- Everything is configurable on IRC by the channel owner, specific to that channel
- More :)

Full Size

Screencaps of upcomming projects?(2


9.

None

Topic: Fight at school

Posted: 10/19/09 01:39 AM

Forum: General

One time I accidentally a whole coke.

Pretty much what I got out of that story.


10.

None

Topic: Wtf!?!?!???!?!

Posted: 10/19/09 01:36 AM

Forum: General

And I'm pretty sure the answer here is "Reformat your computer" or something to that effect -.-

iTunes is shit

11.

None

Topic: What car do you drive?

Posted: 10/19/09 01:32 AM

Forum: General

2002 Honda Civic coupe :)

Self installed stereo, and at 164,000km (Just over 100,000mi) it's still running perfectly.


12.

None

Topic: Staples + Asshole

Posted: 10/19/09 01:31 AM

Forum: General

At 10/18/09 11:17 PM, blakemo wrote: Thread's title definitely misled me.

God I need help.

Same boat.


13.

None

Topic: Staples + Asshole

Posted: 10/19/09 01:28 AM

Forum: General

Apparently the guys at Staples are real assholes.


14.

None

Topic: "Magic Numbers"

Posted: 10/16/09 12:47 PM

Forum: Programming

The advantage to putting magic numbers into variables is when someone else reads your code (Or you look at it again next year) there will be this nice variable definition at the top that can be commented to explain why it is the value that you chose.

Plus it's easier to change if you need to.

When it's code for myself and nobody else, anything goes.
When it's code that someone else is potentially going to see (Namely assignments...) then use variables for that stuff.


15.

None

Topic: In love with a fictional character

Posted: 10/09/09 03:54 AM

Forum: General

At 10/8/09 07:50 PM, SlntCobra1 wrote: I've said it once I'll say it again.

Alexis Rhodes from "Yu-Gi-Oh! GX"

I'm a sucker for blondes.

Close but...

In love with a fictional character


16.

None

Topic: detecting key being pressed C++

Posted: 10/08/09 11:49 AM

Forum: Programming

A lot of people ask how to do a "press any key to continue" in C that doesn't involve the enter key.

This might be helpful for you somehow.

If you are on a POSIX system (Linux, BSD, etc), this removes the buffer from from getchar() entirely

#include <termios.h>
#include <stdio.h>
#include <unistd.h>

int getch( )
{
        struct termios oldt,
        newt;
        int ch;
        tcgetattr( STDIN_FILENO, &oldt );
        newt = oldt;
        newt.c_lflag &= ~( ICANON | ECHO );
        tcsetattr( STDIN_FILENO, TCSANOW, &newt );
        ch = getchar();
        tcsetattr( STDIN_FILENO, TCSANOW, &oldt );
        return ch;
}

int main()
{
        printf( "Press any key to continue...\n" );
        while( !getch() );
        return 0;
}

17.

None

Topic: Functional Programming

Posted: 10/07/09 03:01 PM

Forum: Programming

At 10/6/09 02:11 PM, GustTheASGuy wrote: What is that code?

A language called "FP", written by John Backus
Wikipedia

It was never designed for real-world use, just for education in schools.


18.

Elated

Topic: i wanna learn a language

Posted: 10/06/09 01:58 PM

Forum: Programming

Brainfuck.

+++ +++ +++ +           initialize counter (cell #0) to 10
[                       use loop to set the next four cells to 70/100/30/10
    > +++ +++ +             add  7 to cell #1
    > +++ +++ +++ +         add 10 to cell #2 
    > +++                   add  3 to cell #3
    > +                     add  1 to cell #4
    <<< < -                 decrement counter (cell #0)
]                   
>++ .                   print 'H'
>+.                     print 'e'
+++ +++ +.              print 'l'
.                       print 'l'
+++ .                   print 'o'
>++ .                   print ' '
<<+ +++ +++ +++ +++ ++. print 'W'
>.                      print 'o'
+++ .                   print 'r'
--- --- .               print 'l'
--- --- --.             print 'd'
>+.                     print '!'
>.                      print '\n'

Or, if you remove all the comments,

++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.

19.

None

Topic: Functional Programming

Posted: 10/06/09 01:56 PM

Forum: Programming

Quick. Someone give me the relevant code in their language of choice to print out the number from 1 to 10, inclusive.

For example, in Perl:

print for (1..10);

Now, in Functional Programming (FP) there is no such thing as a variable or a constant. [b]Everything[/b] is a function.
Here's how you print 1 through 10 in FP:

? print1to is (if = o [ id , {1} ] cons o [ {1} , {<>} ] rotl o cons o [ id , print1to o - o [ id , {1} ] ]).
Function print1to defined.

? print1to:10.
-> <1 2 3 4 5 6 7 8 9 10>

Stupid Languages & Concepts class.


20.

None

Topic: Does Linux - Ubuntu piss you off?

Posted: 10/01/09 02:03 PM

Forum: Programming

At 9/28/09 06:57 PM, citricsquid wrote: linux isn't for those who want windows. use windows if you want windows.

OH. MY. GOD. THIS!

THIS!!!!!
THISTHISTHISTHISTHISTHISTHISTHIS!!!

It's so simple! Why can't people figure it out!
AHHHHHISHIDHSSDSHDUSHD you're getting sig'd.


21.

None

Topic: Can you use C++ on Windows for Mac?

Posted: 09/28/09 06:16 PM

Forum: Programming

I'm surprised nobody has mentions this yet..
You can write the code anywhere you want, and as long as you don't do anything OS specific, you can move the code and it will work anywhere.

BUT

You can't compile it on Windows and then move it and expect it to run anywhere else.
You must move the source code (.cpp file(s)) and compile them on the OS you intend to use them on.


22.

None

Topic: What's a "regular" on Newgrounds?

Posted: 09/24/09 11:23 AM

Forum: General

Clearly it depends on the size of your e-penis. Having a vagina is the other way to be an instant regular here.


23.

None

Topic: My Computer

Posted: 09/24/09 11:12 AM

Forum: General

With the specs you have, an old Sempron just doesn't cut it anymore. Not to mention it runs at 400 million degrees kelvin.

You could try spraying out all your fans and the heatsink on the CPU with a can of compressed air, and then leave the case open and point a nice big room fan in there to help keep it cool.

Another note on Windows XP is that it only reads up to about 2GB or RAM (maybe 3) accurately, and your mother board probably doesn't support much more than that anyways.

The best suggestion is just to build yourself a new computer. You can get a nice machine that'll run most modern games for $500 start to finish.


24.

None

Topic: Guitar Hero wants to stop sales

Posted: 09/22/09 02:18 PM

Forum: Video Games

There is a reason Guitar Hero appears more popular than Rock Band / 2.
The answer is quite simply the approach each company takes.

Harmonix has gone the route of weekly DLC, every single week since RB1 was released and lately we've been getting as many as 10 to 13 songs per week. Everyone who is planning on buying Rock Band most likely already has it and a large chunk of them are updating it each week with new content.

Activision/Neversoft has gone the route of one new title per platform every 3 months.
The new "Guitar Hero 5" is actually the 13th release in the GH series, with GH: Van Halen to be the 14th.
You can't buy these things online, and each one comes with its own instruments, accessories, etc. It's no wonder you see more GH at stores and no wonder they move so much more through retailers.

The GH titles to date:
1. Guitar Hero 1 (Harmonix)
2. Guitar Hero 2 (Harmonix)
3. Guitar Hero: Rocks the 80's (Harmonix)
4. Guitar Hero 3 (Neversoft takes over from here on)
5. Guitar Hero: World Tour
6. Guitar Hero: Aerosmith
7. Guitar Hero: Metallica
8. Guitar Hero: On Tour (NinDS)
9. Guitar Hero: On Tour 2 (or whatever it's called, NinDS)
10. Guitar Hero: Handheld (Stupid little handheld battery operated thing)
11. Guitar Hero: Arcade (The arcade version of GH3 that you see in malls and is never calibrated right)
12. Guitar Hero: Smash Hits
13. Guitar Hero 5
14. Guitar Hero: Van Halen

See what I mean?
For comparison, here is the rock band list of releases
1. Rock Band 1
2. Rock Band 2
3. Rock Band: Unplugged (PSP)
4. The Beatles: Rock Band
Unreleased: Lego Rock Band

GH3 and RB1 came out within a month of each other.
Think the series is sufficiently milked yet?


25.

None

Topic: Congrads to Evark!

Posted: 09/22/09 02:28 AM

Forum: General

Ell. Oh. Ell.

Good ol' Evark


26.

None

Topic: Champions Online Character Showoff!

Posted: 09/22/09 12:46 AM

Forum: Video Games

Unlocked a new costume slot, so back into the editor I go.

There is also a Full Size screenshot to go with this.

Champions Online Character Showoff!


27.

None

Topic: Champions Online Character Showoff!

Posted: 09/21/09 05:46 PM

Forum: Video Games

I just got the game a couple days ago, and I;ve already spent countless hours in the character creator. Great fun.

This is my first character, if you want to get a feeling for how tall/short she is, check out the Full Capture image. :)

Champions Online Character Showoff!


28.

None

Topic: Metal Hell

Posted: 09/18/09 07:06 PM

Forum: Clubs & Crews

At 9/18/09 04:51 PM, AniMetal wrote


I've been to longer.

Dream Theater alone was 5 hours when they were here. Still, doors open at 5:30 PM I left at 11:30. Good show :)


29.

None

Topic: Metal Hell

Posted: 09/18/09 04:09 PM

Forum: Clubs & Crews

Last saturday I finally got to see Between the Buried and Me in concert :D

The lineup was
BTBAM - 30 minutes.. they only got to play three songs (All Bodies, Obfuscation, and White Walls)
Protest the Hero - 45 minutes
In Flames - 90 minutes
Killswitch Engage - 110 minutes

With the setup time and all it was a LONG show. I hope BTBAM comes back to Winnipeg and headlines next time, they are fucking amazing live


30.

None

Topic: Boycott Pirate Day

Posted: 09/18/09 03:17 PM

Forum: General

Do what you want cause a pirate is free, YOU ARE A PIRATE!

Boycott Pirate Day


All times are Eastern Standard Time (GMT -5) | Current Time: 07:43 AM

<< < > >>

Viewing 1-30 of 6,343 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7109212