I've done it, finally, I'm on Newgrounds, I can't wait to watch some really kewl flashes, oh YEAH!
I've done it, finally, I'm on Newgrounds, I can't wait to watch some really kewl flashes, oh YEAH!
At 6/11/09 11:43 PM, Zyphonee wrote: I've done it, finally, I'm on Newgrounds, I can't wait to watch some really kewl flashes, oh YEAH!
that made me want to throw up
At 6/11/09 11:43 PM, Zyphonee wrote: I've done it, finally, I'm on Newgrounds, I can't wait to watch some really kewl flashes, oh YEAH!
The color scheme is... frightening.
At 6/12/09 12:18 AM, Alpharius120 wrote:At 6/11/09 11:43 PM, Zyphonee wrote: I've done it, finally, I'm on Newgrounds, I can't wait to watch some really kewl flashes, oh YEAH!The color scheme is... frightening.
What are you talking bout? it turns me on >=D
I finally installed Dead Space on my comp, fuck, this game is just like Resident Evil 4, minus the small flaws that kept it from being perfect. Speaking of which, brb, gotta change my diaper :D
At 6/11/09 09:27 PM, Glaiel-Gamer wrote: safari's better, firefox is just trendy
The Flash players at Myspace/Kongregate only run in Safari for me - not in Firefox - somewhat proving that at least that aspect is more robust.
I keep using Firefox for a few reasons though:
1) I prefer the way I can type a snippet of the name, starting anywhere, for it to be autocompleted (rather than having to start at the beginning of the address).
2) I find it marginally convenient to be able to type stuff straight into the address bar and have the browser automaticaly do a google search. I admit that typing in a different window would just be a minor matter of changing habits.
3) I already have a ton of bookmarks saved and search toolbars (can't remember their proper name).
:::Electric Earth Collab:::::::::Review Request Club:::::::::NG Calendar:::::::::Life is a playground so get out and play.:::
At 6/12/09 03:01 AM, Bezman wrote: 1) I prefer the way I can type a snippet of the name, starting anywhere, for it to be autocompleted (rather than having to start at the beginning of the address).
2) I find it marginally convenient to be able to type stuff straight into the address bar and have the browser automaticaly do a google search. I admit that typing in a different window would just be a minor matter of changing habits.
3) I already have a ton of bookmarks saved and search toolbars (can't remember their proper name).
the thing is, google chrome can do all this and more.
and its faster.
also it looks nicer.
plus you can transfer your bookmarks.
in continuance the source code viewer is better than firefox and the HTML editor is better than firebug.
to continue when you right click to view images it automatically opens up a new tab for it
finally the fact that it does a google search isn't the only thing it can do. you can also program it to search via other search sites. i think this is a big step for google instead of limiting their auto searcher to only them.
switch now.
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
At 6/12/09 03:21 AM, fluffkomix wrote: the thing is, google chrome can do all this and more.
switch now.
I would actually try it, but after checking 5 seconds ago, I found it's still Windows only and I use OSX.
:::Electric Earth Collab:::::::::Review Request Club:::::::::NG Calendar:::::::::Life is a playground so get out and play.:::
At 6/12/09 03:23 AM, Bezman wrote:At 6/12/09 03:21 AM, fluffkomix wrote: the thing is, google chrome can do all this and more.I would actually try it, but after checking 5 seconds ago, I found it's still Windows only and I use OSX.
switch now.
You can get the developer build to mess around with.
Keep in mind its not complete.
i know most of you will ignore this, but for the one or two that might be interested (i don't want to do a user blog post thingy till i'm actually completed)
yaaaay, using flex profiler my custom written distance function is 39% faster than my best AS3 one, even without full method inlining yet.
function dis_abc(a:Point,b:Point):Number
{
__asm_clear();
__asm("max_stack 4",
"local_count 3",
"scope_depth 0",
"getlex Math",
"getlocal_2",
"getproperty x",
"getlocal_1",
"getproperty x",
"subtract",
"dup",
"multiply",
"getlocal_2",
"getproperty y",
"getlocal_1",
"getproperty y",
"subtract",
"dup",
"multiply",
"add",
"callproperty sqrt 1",
"returnvalue");
__asm_end();
return 0;
39% faster than:
function dis_as3(a:Point,b:Point):Number
{
const dx:Number = b.x-a.x;
const dy:Number = b.y-a.y;
return Math.sqrt(dx*dx+dy*dy);
}
At 6/12/09 03:41 AM, dELtaluca wrote:i know most of you will ignore this, but for the one or two that might be interested (i don't want to do a user blog post thingy till i'm actually completed)
so what exactly are you trying to accomplish as a whole in all these little snippets of code you're giving us?
like what are these all for?
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
At 6/12/09 03:43 AM, fluffkomix wrote: so what exactly are you trying to accomplish as a whole in all these little snippets of code you're giving us?
like what are these all for?
for making faster running code in AS3 basicly.
At 6/12/09 03:52 AM, dELtaluca wrote:like what are these all for?for making faster running code in AS3 basicly.
So there'll be no lag in our game?
so... the bottom code is AS3 and the top is your custom code? I don't know AS3 so I can't tell either way...
:::Electric Earth Collab:::::::::Review Request Club:::::::::NG Calendar:::::::::Life is a playground so get out and play.:::
At 6/11/09 09:24 PM, cheese1756 wrote:At 6/11/09 07:50 PM, Glaiel-Gamer wrote:Get FirefoxAt 6/11/09 07:34 PM, Paranoia wrote:get safariAt 6/11/09 07:30 PM, Paranoia wrote:and this kind of behaviour from IE et Facebook is not helping matters;also I am feeling elegantly wasted right now
I do. My university internet connection doesn't like Firefox for pages with any kind of interactivity :/
At 6/12/09 03:41 AM, dELtaluca wrote: yaaaay, using flex profiler my custom written distance function is 39% faster than my best AS3 one, even without full method inlining yet.
Mada mada yo, noob. :p
At 6/12/09 03:21 AM, fluffkomix wrote:
in continuance the source code viewer is better than firefox and the HTML editor is better than firebug.
Google Chrome has an html editor?
At 6/12/09 09:22 AM, Magical-Zorse wrote:At 6/12/09 03:21 AM, fluffkomix wrote:Google Chrome has an html editor?
in continuance the source code viewer is better than firefox and the HTML editor is better than firebug.
right click > inspect element
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
At 6/12/09 10:29 AM, fluffkomix wrote:At 6/12/09 09:22 AM, Magical-Zorse wrote:right click > inspect elementAt 6/12/09 03:21 AM, fluffkomix wrote:Google Chrome has an html editor?
in continuance the source code viewer is better than firefox and the HTML editor is better than firebug.
You can do that on safari.
So how is everyones power of 3 going? (if you're involved that is)
Today my musician came over and we worked on our levels and stuff solid for like 5 hours, its really turning out great. He thinks that its better than castle crashers XD
He's wrong...BUT it is turning out really good! I'm getting excited.
At 6/13/09 12:53 AM, Duchednier wrote: So how is everyones power of 3 going? (if you're involved that is)
you're making me feel bad.
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
At 6/12/09 09:18 AM, GustTheASGuy wrote: Mada mada yo, noob. :p
http://ncannasse.fr/blog/fast_inverse_sq uare_root
Why are you always reading french websites? Living in France made me have a very low opinion of them in anything that's science-related.
On a slightly related note, at school we could choose whether to finish the last 2 weeks of school normally by going to classes, or do research projects at the school library using computers. Naturally I preferred the second choice, and it turns out we're not gonna be doing it in the library, but at the INRIA (National institute of computer science research). It should be pretty cool, that place has a really good reputation in france.
At 6/13/09 02:04 AM, Toast wrote: Why are you always reading french websites? Living in France made me have a very low opinion of them in anything that's science-related.
I don't particularly, but it's the home of INRIA and Motion-twin/Cannasse which are responsible for OCaml and haXe respectively so I might read those.
On a slightly related note, at school we could choose whether to finish the last 2 weeks of school normally by going to classes, or do research projects at the school library using computers. Naturally I preferred the second choice, and it turns out we're not gonna be doing it in the library, but at the INRIA (National institute of computer science research). It should be pretty cool, that place has a really good reputation in france.
Ask for a demonstration of their languages. :D
At 6/13/09 09:22 AM, Paranoia wrote:(http://www.newgrounds.com/portal/view/49 9204
Oh noes lazymuffin D:
Luis on youtube
opened YouTube and found this on my front page..
http://www.youtube.com/watch?v=JtUX3gZ2N Bk
music
My brother has a portable hardrive and he is now transferring 20 gigs of music to my computer yay =]
At 6/13/09 09:22 AM, Paranoia wrote:(http://www.newgrounds.com/portal/view/49 9204
Yes if you leave in Israel you have to go to the army...saddest thing about it that i am 16 and with my minimum wage i will make in a week about the same amount that i will make in the army in a month =[
At 6/13/09 09:22 AM, Paranoia wrote:(http://www.newgrounds.com/portal/view/49 9204
Wow, well it's a good advert against conscription. I don't understand the idea, it'll damage the economy, and how can it be legal to force someone to go kill someone else. Anyway, sad song :'(
At 6/13/09 12:05 PM, Depredation wrote:At 6/13/09 09:22 AM, Paranoia wrote:Wow, well it's a good advert against conscription. I don't understand the idea, it'll damage the economy, and how can it be legal to force someone to go kill someone else. Anyway, sad song :'((http://www.newgrounds.com/portal/view/49 9204
I dont know exactly how it works in Israel but in several countries military training is compulsary. What happens is all males are military trained for a couple years and then in theory if they are ever needed, they can be called up and already have training. The actual army is made of people who choose to stay.
I think it's something like that. I didn't know it was 3 years though.
Yeah...my friend "Big" Avi had to go back to Israel to do his bit in the army. Luckily, times were not as tense as they are now, but it was still messed up. Before he left, he was knee-deep in Rabbinical school. When he got back, he became an apprentice to a jeweler in NYC, and is essentially an atheist now. Screwed up huh?
Why are people like this allowed to exist?
"The graphics at the start were pretty good but as it got closer to the end I noticed you kinda gave up and it kinda ruined the whole experience. Next time try to maintain the same quality throughout the game, this could have a lot higher score if you managed to put more effort in near the end."