00:00
00:00
Newgrounds Background Image Theme

Default just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

The Flash 'Reg' Lounge

3,046,086 Views | 60,186 Replies
New Topic Respond to this Topic

Response to The Flash 'Reg' Lounge 2009-06-11 09:21:42


uh oh, I just remembered I have my math final today


BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 10:07:44


i hate microsoft so much.

it didn't occur to them, at any point, that while the user is sleeping, maybe they shouldn't automatically restart the computer? especially if the person has programs running? thats just assholery right there. now i have to redo a bunch of stuff for my jap project.

kaplammy.


Sig made by me

Once again i'm falling down a mountain like a metaphor

Here ends another post by the grand master of all things: fluffkomix

BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 10:15:57


At last I got a new graphic card, dammit, at last I can start using Maya and playing the good games on my computer, blurgh! Oh, I also got my ban raised today. Best.day.ever.

Response to The Flash 'Reg' Lounge 2009-06-11 10:45:02


At 6/11/09 07:34 AM, Saza wrote:
At 6/11/09 07:19 AM, UnknownFury wrote: "Once a word has been used 25,000 times on social networking and other sites, GLM declares it be a new word."

Summer project: Think up a new word and get it used 25,000 times so it's declared as a new word.
Kaplammy!

Frindle?


sig'd

Response to The Flash 'Reg' Lounge 2009-06-11 10:45:47


At 6/11/09 10:45 AM, chickendance333 wrote: Frindle?

No! Kaplammy!

Response to The Flash 'Reg' Lounge 2009-06-11 10:59:58


GameJacket closes down That's going to make a lot of games unplayable and a lot of developers pissed because they won't get their money...


BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 11:21:01


well off i go to school. how many people have already gotten off school?


Sig made by me

Once again i'm falling down a mountain like a metaphor

Here ends another post by the grand master of all things: fluffkomix

BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 11:22:10


At 6/11/09 10:59 AM, Xeptic wrote: GameJacket closes down That's going to make a lot of games unplayable and a lot of developers pissed because they won't get their money...

Probably a good reason to stick with NG ads. This site is fairly stable.


BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 12:09:28


YAY INLINE BYETCODE

It doesn't yet handle opcodes with arguments in my program for the inlining stage, but here's a simple example of what you can do with it:

import abc.*; function test(a:Number,b:Number,c:Number):Number { __asm("max_stack 2", "getlocal_1", "getlocal_2", "add", "getlocal_3", "add", "returnvalue"); __asm_end(); return a*b*c; }

test this in Flash, and the function will return the product of the 3 numbers,
run it through my program with the inlining option enabled, and the method will now return the sum of the 3 numbers :P

__asm() takes the opcodes to be inlined, whilst __asm__end() tells my program that anything after this (aka the code that is executed in the flash test) is to be removed.

Response to The Flash 'Reg' Lounge 2009-06-11 12:12:03


Here's the bytecode output from my program:

Before inlining:

function test(Number, Number, Number):Number { // max_stack=9 local_count=4 max_scope=1 code_length=32 0 getlocal_0 1 pushscope 2 findpropstrict abc::__asm 4 pushstring max_stack 2 6 pushstring getlocal_1 8 pushstring getlocal_2 10 pushstring add 12 pushstring getlocal_3 14 pushstring add 16 pushstring returnvalue 18 callpropvoid abc::__asm 8 21 findpropstrict abc::__asm_end 23 callpropvoid abc::__asm_end 0 26 getlocal_1 27 getlocal_2 28 multiply 29 getlocal_3 30 multiply 31 returnvalue }

After inlining

function test(Number, Number, Number):Number { // max_stack=2 local_count=4 max_scope=1 code_length=8 0 getlocal_0 1 pushscope 2 getlocal_1 3 getlocal_2 4 add 5 getlocal_3 6 add 7 returnvalue }

Response to The Flash 'Reg' Lounge 2009-06-11 12:30:53


Before and after inlining:

The Flash 'Reg' Lounge

Response to The Flash 'Reg' Lounge 2009-06-11 12:33:08


At 6/11/09 12:30 PM, CybexALT wrote: Before and after inlining:

You suck, I think you should add me on msn.

Response to The Flash 'Reg' Lounge 2009-06-11 12:41:41


At 6/11/09 10:59 AM, Xeptic wrote: GameJacket closes down That's going to make a lot of games unplayable and a lot of developers pissed because they won't get their money...

Oh kaplammy!!!


"To live is the rarest thing in the world. Most people exist, that is all."

- Oscar Wilde

BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 12:41:42


At 6/11/09 12:30 PM, CybexALT wrote: Before and after inlining:

So with inlining you have to skate on one foot?


The water in Majorca don't taste like what it oughta.

| AS3: Main | AS2: Main | Flash Tutorials |

BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 12:48:59


At 6/11/09 12:41 PM, Kirk-Cocaine wrote:
At 6/11/09 12:30 PM, CybexALT wrote: Before and after inlining:
So with inlining you have to skate on one foot?

Its a double footed roller blade. :)

Kaplammy!

Response to The Flash 'Reg' Lounge 2009-06-11 12:54:09


At 6/11/09 12:48 PM, Saza wrote:
At 6/11/09 12:41 PM, Kirk-Cocaine wrote:
At 6/11/09 12:30 PM, CybexALT wrote: Before and after inlining:
So with inlining you have to skate on one foot?
Its a double footed roller blade. :)

I think it's technically called a "roller-ski"

Response to The Flash 'Reg' Lounge 2009-06-11 13:10:32


At 6/11/09 12:54 PM, BoMToons wrote:
At 6/11/09 12:48 PM, Saza wrote:
At 6/11/09 12:41 PM, Kirk-Cocaine wrote:
At 6/11/09 12:30 PM, CybexALT wrote: Before and after inlining:
So with inlining you have to skate on one foot?
Its a double footed roller blade. :)
I think it's technically called a "roller-ski"

Oh yes as in:

Lets go roller-skiing
He's so good at roller-skiing
Let me fuck you while roller-skiing.

Nice catch.

Response to The Flash 'Reg' Lounge 2009-06-11 14:24:46


Just came back from the first reproduction of UP in Argentina, that movie is fucking awesome, I almost cried.

ok, I did cry.

Response to The Flash 'Reg' Lounge 2009-06-11 15:21:11


Is it me or are some people using the reg lounge like twitter?
Stop it.


BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 15:23:42


I use twitter and I proudly love it. It's great, all you do is post "I'm twitting" and that's pretty much all you do, how can it be any more simple?!

Response to The Flash 'Reg' Lounge 2009-06-11 15:26:19


At 6/11/09 03:23 PM, Zyphonee wrote: I use twitter and I proudly love it. It's great, all you do is post "I'm twitting" and that's pretty much all you do, how can it be any more simple?!

Twitter updates it for you?

But man thatd be kaplammy

Response to The Flash 'Reg' Lounge 2009-06-11 16:59:59


At 6/11/09 03:23 PM, Zyphonee wrote: I use twitter and I proudly love it. It's great, all you do is post "I'm twitting" and that's pretty much all you do, how can it be any more simple?!

I agree, like even i've done that a few times and i'm slowly starting to realize it...

Personally i hate that whole status updates thing on facebook and refuse to get a twitter, its just like JohnnyUtah sez, People who are boring should not be demonstrating how boring they are through the internets.

If you're watching TV, CONGRATS! Don't use twitter to let all of nobody know that you are. if its THAT important, phone or text your friends saying "oh man im totally watching tv right now"

In funner news, i had an interview for a 3D animation specific course at the college i'm trying to go to (. . . for that course :P) It went really well i showed off some of exile 4 and my skills canada video, along with craploads of artwork. The interview ended with "And we'll see you in the fall probably"

And since they cant just say "yeah you're in" like that, i'd say THAT answer was a pretty good one :D

I'm also celebrating the end of gradeschool forever this weekend by getting plastered with friends, its gonna be hectic!

Response to The Flash 'Reg' Lounge 2009-06-11 17:37:25


The adverts for big brother are on, so I thought I'd quickly just update my newgrounds status.

Response to The Flash 'Reg' Lounge 2009-06-11 17:40:44


At 6/11/09 05:37 PM, CybexALT wrote: The adverts for big brother are on, so I thought I'd quickly just update my newgrounds status.

Your not welcome any more! :(

I really wanna make a platformer...

Response to The Flash 'Reg' Lounge 2009-06-11 17:43:00


At 6/11/09 05:40 PM, Saza wrote:
At 6/11/09 05:37 PM, CybexALT wrote: The adverts for big brother are on, so I thought I'd quickly just update my newgrounds status.
Your not welcome any more! :(

I really wanna make a platformer... kaplammy

.........


The water in Majorca don't taste like what it oughta.

| AS3: Main | AS2: Main | Flash Tutorials |

BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 17:46:47


At 6/11/09 05:43 PM, Kirk-Cocaine wrote:
At 6/11/09 05:40 PM, Saza wrote:
At 6/11/09 05:37 PM, CybexALT wrote: The adverts for big brother are on, so I thought I'd quickly just update my newgrounds status.
Your not welcome any more! :(

I really wanna make a platformer... kaplammy
......... kaplammy

I actually googled kaplammy. Newgrounds is top on the list ;)

It tried to correct it to kablammy. Fucking idiots.

Response to The Flash 'Reg' Lounge 2009-06-11 18:12:06


Apparently, my local Newgrounds Buffet (the deli) hates Swedish people...

The Flash 'Reg' Lounge


Check out my newest News Post!

Anyone need an artist or coder for a game? Drop me a PM!

BBS Signature

Response to The Flash 'Reg' Lounge 2009-06-11 18:15:45


fun with inline bytecode

function funwithjumps():String { __asm("jump abc_label"); return "this was run before inlining"; __asm("clabel abc_label"); return "this was run after inlining"; }

Response to The Flash 'Reg' Lounge 2009-06-11 18:27:29


At 6/11/09 06:12 PM, KyleDaFox wrote: Apparently, my local Newgrounds Buffet (the deli) hates Swedish people...

How rude.........Kaplammi

Response to The Flash 'Reg' Lounge 2009-06-11 18:35:10


At 6/11/09 06:12 PM, KyleDaFox wrote: Apparently, my local Newgrounds Buffet (the deli) hates Swedish people...

I loled!

i wonder what other NG things exist around the world :O and if they hate swed's as much as newgrounds does. . .

i'm not racist, swedish are cool :D