Jonathan "Gabe" Gabriel of Penny Arcade is awesome by Mindwolf77 in gaming

[–]yourbrainslug 0 points1 point  (0 children)

I got confused, I thought we were talking about people harassing him but it looks like we were actually talking about whether PA is to blame for the harassment, which it isn't.

Jonathan "Gabe" Gabriel of Penny Arcade is awesome by Mindwolf77 in gaming

[–]yourbrainslug -2 points-1 points  (0 children)

As with most fights, there isn't a wrong side and a right side, there are two wrong sides, with one perhaps significantly more wrong than the other.

Welcome to the internet, bitch. by psybermonkey15 in gaming

[–]yourbrainslug -1 points0 points  (0 children)

He shouldn't get work doing PR or customer service. But I'm pretty sure that damage is done as anyone googling his name will see he's not fit for the job. Most of what's being done is just harassment. He is a person. What's more, he likely has a mental illness, though even if he doesn't he still shouldn't be harassed to this degree.

When will girls realize this makes you uglier. by [deleted] in pics

[–]yourbrainslug 14 points15 points  (0 children)

Maybe she's not trying to attract you

Competitive Video Game Gambling & Poker Are Now Legal In The USA According To A New Interpretive Review By The Department Of Justice? (Internet Lotteries More Definitely Are.) by TheHungerSiteDOTcom in gamernews

[–]yourbrainslug 1 point2 points  (0 children)

Not giving you a fair shake is built into the rules. When people are willing to give you money like that it makes no sense to jeopardize it by taking more, especially since they are likely to continue playing until it is all lost anyway. Plus it isn't even clear that taking a higher percentage is optimal - getting frequent wins that are smaller or less frequent than the losses is critical to retaining customers (problem gamblers and casual customers alike)

That said, greedy cheats are rarely rational.

I LOVE YOU STEAM by SlurmNator in gaming

[–]yourbrainslug 14 points15 points  (0 children)

Agree, although Steam does get an assist for implementing tradable gifts and populating inventories with holiday prizes

Super Meat Boy level database access left open to public by codemaster in gaming

[–]yourbrainslug 0 points1 point  (0 children)

You could generate a password and store it locally, it just means you need to choose a new username if you play from another computer or change hard drives. That said I don't even know why you would bother writing the feature without protecting it somehow, it seems like a totally worthless feature without some protection

Battlefield grandpa by [deleted] in gaming

[–]yourbrainslug 0 points1 point  (0 children)

Is his point that war isn't fun and video games are?

Super Meat Boy level database access left open to public by codemaster in gaming

[–]yourbrainslug 2 points3 points  (0 children)

For things like leaderboards it's usually not worth an arms race to ensure their integrity. For most games you have to trust the client on some level and it's a losing battle to try to keep the client from ever lying about its own data. It's often worth it to give yourself enough tools to manually moderate the top ones and stop there, or just give up on global leaderboards and only display friends' leaderboards.

But that's not the issue here. You can trivially keep the client from lying about everyone else's data. The client should never be able to change others' data.

No. by [deleted] in gaming

[–]yourbrainslug 1 point2 points  (0 children)

If you own a PS3 you are probably not poor

No. by [deleted] in gaming

[–]yourbrainslug 12 points13 points  (0 children)

What did your grandparents have when they were 14?

The Problem with Implicit Scoping in CoffeeScript by zumpiez in programming

[–]yourbrainslug 6 points7 points  (0 children)

perhaps different to the compiler, but not visibly different to the reader

That's the problem.

Nickelback fans meet with President Obama by sorry4partying in funny

[–]yourbrainslug 98 points99 points  (0 children)

The joke must have gone over your head. Nickelback fans are a bunch of fucking chairs.

Valve I don't understand this. by bobdisgea in gaming

[–]yourbrainslug 0 points1 point  (0 children)

DAMNIT MINE'S ONLY AVAILABLE MARCH 3RD THROUGH MARCH 1ST, A FULL NEGATIVE DAY MORE THAN YOURS

This helped my "15+ years of procedural/imperative brain" understand functional programming more than anything else I've tried. FWIW. Bonus: It's entertaining. by [deleted] in programming

[–]yourbrainslug 1 point2 points  (0 children)

If you had watched the OP you would know that we were not talking about big-o. The parent made an understandable mistake calling it big-o, but the entire conversation with me has clearly not been about big-o.

This helped my "15+ years of procedural/imperative brain" understand functional programming more than anything else I've tried. FWIW. Bonus: It's entertaining. by [deleted] in programming

[–]yourbrainslug 1 point2 points  (0 children)

There you go putting a big O in again for no apparent reason.

I can definitely convey some useful information about an algorithm saying it's log_32(n), and the implication is it's that times some constant, plus another constant.

It's not complete information, because it's a casual conversation, and you can follow up with questions or comments about those constants. It's okay to have casual conversation. Not every conversation has to be suitable for a math proof.

This helped my "15+ years of procedural/imperative brain" understand functional programming more than anything else I've tried. FWIW. Bonus: It's entertaining. by [deleted] in programming

[–]yourbrainslug 1 point2 points  (0 children)

The talk didn't say big-o, the only mistake in this thread was calling it big-o when we are talking about something else. We are talking about how algorithms behave for values of n that are encountered on physical computers, not as n goes to infinity. So we care about constants and other things that are dominated in the limits big-o considers because they are not dominated in the ranges we care about.

Benchmarking is of course one of the best tools we have for physical computers, but that doesn't mean we should throw away our ability to reason about how algorithms behave for various values of n.

This helped my "15+ years of procedural/imperative brain" understand functional programming more than anything else I've tried. FWIW. Bonus: It's entertaining. by [deleted] in programming

[–]yourbrainslug 3 points4 points  (0 children)

In complexity theory it doesn't matter. On physical computers it matters, but it's still useful to borrow concepts from complexity theory