At 6/28/09 07:04 PM, Senti wrote: And the art portal is prtty neat. Hope alls well in internet land. I just got an internship at a design firm in New York City.
Congrats. It's not Lolz LLC though is it?
At 6/28/09 07:04 PM, Senti wrote: And the art portal is prtty neat. Hope alls well in internet land. I just got an internship at a design firm in New York City.
Congrats. It's not Lolz LLC though is it?
I'm going over my file loading and managing class for closure... hopefully gonna cut down the massive amounts of repeated code there with some templating.
Just redid a bit to get the blocks of code to all be the same except for one class type, while keeping the interface to the class the same. So, some easy templating and this should work pretty well.
Probably one of the first days where my work cuts down the number of lines of code in my project instead of adding to it.
At 6/28/09 04:38 PM, knugen wrote:Dear Americans, please don't hit me :(
*Punch*
But, in the end, it was a good effort by us. Everyone was expecting Brazil to just crush us but we actually put up a challenge for Brazil. I don't think anyone was disappointed with America losing 2-3 to brazil because that is far, far better than anyone expected.
Although, it was kinda saddening being up 2-0 at halftime and then losing :(.
Also, to Billy Mays dying:
It was Vince (from Slapchop).
Think about it, they were both tv advertisers so there had to be some kinda competition there and they didn't like each other anyway (linksies) so my theory is that Vince killed Billy Mays with a slapchop and wiped up the blood with a shamwow.
At 6/28/09 08:08 PM, MichaelHurst wrote: It was Vince (from Slapchop).
I was talking about that idea to my friend (he's currently making a youtube montage as we speak) (he's a youtube-ee). Did you know the shamwow guy was put in jail for beating up a hooker? I'm never gunna look at a slap chop in the same way.
Fun fact 1: wikipedia redirects 'shamwow guy' to the right page :D
Fun fact 2: His real first name is Offer. A TV salesman called Offer.
At 6/28/09 08:35 PM, trig1 wrote:At 6/28/09 08:08 PM, MichaelHurst wrote: It was Vince (from Slapchop).I was talking about that idea to my friend (he's currently making a youtube montage as we speak) (he's a youtube-ee). Did you know the shamwow guy was put in jail for beating up a hooker? I'm never gunna look at a slap chop in the same way.
Fun fact 1: wikipedia redirects 'shamwow guy' to the right page :D
Fun fact 2: His real first name is Offer. A TV salesman called Offer.
he was arrested, not put in jail
But we can dream
http://www.youtube.com/watch?v=nMMxIAn_7 6g
At 6/28/09 08:46 PM, Glaiel-Gamer wrote: he was arrested, not put in jail
But we can dream
http://www.youtube.com/watch?v=nMMxIAn_7 6g
HEY, YOU'RE BREAKING RULE NUMBER ONE OF CAPS WEEK!
At 6/28/09 10:09 PM, Zyphonee wrote:At 6/28/09 08:46 PM, Glaiel-Gamer wrote: he was arrested, not put in jailHEY, YOU'RE BREAKING RULE NUMBER ONE OF CAPS WEEK!
But we can dream
http://www.youtube.com/watch?v=nMMxIAn_7 6g
OH FUCK I"LL MAKU UP FOR IT # TIMES BY HOLDING THE CAPSLOCK FOR ALL !) NUMBERS TOO!
ABC! EASY AS !@#!
I ATTEMPTED TO MAKE A FLASH WHERE BILLY MAYS IS KILLED BY VINCE WITH A SLAPCHOP BUT THEN REMEMBERED THAT I CANT ANIMATE WORTH SHIT.
At 6/28/09 11:28 PM, MichaelHurst wrote: I ATTEMPTED TO MAKE A FLASH WHERE BILLY MAYS IS KILLED BY VINCE WITH A SLAPCHOP BUT THEN REMEMBERED THAT I CANT ANIMATE WORTH SHIT.
that's ok, it's the thought that matters.
i come back from camping and three celebs died.
hot damnation.
anyways now that i'm back and my mom and sis'll be out doing school or work or whatever there'll be no one ruining my productivity. seriously i spend almost all my time either animating, learning to code websites, or talking with you guys, and she says i've done nothing but sit on my ass all day and stare at a computer monitor.
basically that's what i've been doing but she acts like it's not productive in any way and that helping her move a cooler or whatnot will help my future more than this.
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/29/09 12:53 AM, fluffkomix wrote: i come back from camping
Didja have fun?
At 6/29/09 01:24 AM, Magical-Zorse wrote:At 6/29/09 12:53 AM, fluffkomix wrote: i come back from campingDidja have fun?
hellz to the yiz-zes
but when we left gustefson lake and went to big bar, it sorta stopped being camping since we were in a cabin, but that didn't bother me. what bothered me was the fact that i couldn't ride the ATV at all. i could ride it wherever i wanted to at Gust lake but not anywhere here.
so it was fun, but not as fun as gust
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
Views/Subscriptions plz
www.youtube.com/bentfingers1
At 6/28/09 06:05 AM, GustTheASGuy wrote:At 6/28/09 03:16 AM, Toast wrote: I've been trying to find an algorithm that can sort lists of n items in n steps, but so far no success xDUhuh.
I think it's impossible to do that, because to answer the question "Is this list of n items sorted?" you need n comparisons, and therefore writing a stable general sort that sorts lists from scratch in n or less steps would be to answer P = NP. Now of course it may be possible that P = NP, but what is not possible is that I can solve it :p
The best general sort is mergesort. O (n+klogn) where k+1 = number of first elements
The code I wrote is pretty much a merge sort. I was really impressed with the speed, i can give him 10 000 values to sort and it's gonna do it in a split second. Also I was wondering, is there any way to make your CPU work with full power on a problem? When I was trying to sort lists of 1 million values it was taking relatively a lot of time and my CPU didn't seem to work particularly hard on it.
Also, I see your point about not wanting to study. I just had a look at MIT open courseware's lectures on algorithms, in the first courses they don't do anything that I didn't learn on the internet in less than an hour. However I think that as things get more complex, it's bad to learn from the internet.
mergesort cmp = reduce . map return
where
reduce [xs] = xs
reduce xss = reduce (pair xss)
pair (xs:ys:xss) = merge xs ys : pair xss
pair rest = rest
merge (x:xs) (y:ys)
| cmp x y == GT = y : merge (x:xs) ys
| otherwise = x : merge xs (y:ys)
merge xs [] = xs
merge [] ys = ys
Interesting
Kay. Next spring or so then.
Oh. I'll have two weeks between coming from israel and going back to school. There's not so much to do around here, all you'll find is hi-tech companies like the INRIA. I know you like them, so if you'd like to visit the INRIA or something you can come here. I even have the email of the guy who's in charge of guiding the visitors.
At 6/29/09 01:55 AM, Glaiel-Gamer wrote: http://www.newgrounds.com/portal/view/50 1448
OH MY GOD, OH MY FUCKING GOD!
Enough of this all caps posting guys. Seriously.
At 6/29/09 09:51 AM, Kirk-Cocaine wrote: Enough of this all caps posting guys. Seriously.
Party pooper :(
Feeling like its time to get some new merch from the newgrounds store.. any recomendations? could be anything :3
.
At 6/29/09 11:58 AM, adman1993 wrote: Feeling like its time to get some new merch from the newgrounds store.. any recomendations? could be anything :3
Get a dandy shirt, everyone will love it!
At 6/29/09 12:15 PM, Magical-Zorse wrote:At 6/29/09 11:58 AM, adman1993 wrote: Feeling like its time to get some new merch from the newgrounds store.. any recomendations? could be anything :3Get a dandy shirt, everyone will love it!
I saw that and was tempted.. although i never really played the game :/
.
Does anybody know any site that i can get artsy tees? All i know is threadless.
.
At 6/29/09 01:07 PM, adman1993 wrote: Does anybody know any site that i can get artsy tees? All i know is threadless.
I think Cafepress is quite good.
At 6/29/09 01:07 PM, adman1993 wrote: Does anybody know any site that i can get artsy tees? All i know is threadless.
At 6/29/09 01:07 PM, adman1993 wrote: Does anybody know any site that i can get artsy tees? All i know is threadless.
Threadless is the bomb, but they are always sold out of anything that I like.
Try
They're not bad.
Help me fix my internets
Well, I can't connect to the internet on my PC (which I'm obviously not using now - before some smartarse points that out).
In this house we've got a router which connects us to the internet, and wireless connections between that and everything else, including this PC and mine. Everything else is working perfectly well.
According to the only piece of software that's bothering to diagnose things for me, Xfire, it's a problem with my DNS not being able to resolve things or something like that. This is somewhat confusing, since I tried the DNS servers which are already working on this PC and they didn't help things at all.
Anyway, apart from the few hours of research I've been doing I'm useless when it comes to internet and network connections. Any suggestions for diagnosing or fixing the problem? I'm a bit suspicious that the ITS department back at university messed my shit up with their bizarre selection of proxies and probing to make sure our computers don't have anything contagious.
If nothing else I'm happy if someone can just point out the easiest way of totally reinstalling all my network junk.
At 6/29/09 02:49 PM, Paranoia wrote: Help me fix my internets
If nothing else I'm happy if someone can just point out the easiest way of totally reinstalling all my network junk.
You should try PMing Tim about it, he helped me with my network issues from my laptop last week .... he was like the computer guy on SNL, i was struggling, and he was like 'moooooove', and he punched up a bunch of shit on my keyboard and it was magically fixeddd
None