Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re: Dream job (Score 1) 263

This, Samsung, BP, et al. have to pay someone to troll their competitors... Apple gets chumps to do it for free.

What makes you so sure about this?

I have yet to meet a real life apple fan (and yes, i know some people who have pretty much all available kit) that behaves anywhere near as stupid as the common internet troll. Sure, anonymity might have something to do about it, but i really doubt there are that many people who actually care about Apple like a religion.

Comment Re:News flash (Score 1) 470

Obviously there is an example in the first page of the paper. What follows is mostly a direct quote from there.

char *buf = ...;
char *buf_end = ...;
unsigned int len = ...;
if (buf + len >= buf_end)
return; /* len too large */
if (buf + len < buf)
return; /* underflow, buf+len wrapped around */ /* write to buf[0..len-1] */


char *buf = ...;
char *buf_end = ...;
unsigned int len = ...;
unsigned int buf_len= buf_end-buf;
if (len>buf_len) return; /* write to buf[0..len-1] */

There fixed it for ya.

They say they found this code in Chromium, Linux and Python.

If this had been some newb project i would have just frowned. But hearing those levels of incompetence reach so far hurts my head.

Comment Re:News flash (Score 1) 470

Maybe a developer has added logic like this - "if (someBadCondition) int x = 1 / 0;" to force an exception or fault to be thrown.

As opposed to "if (someBadCondition) exit(E_MYBADCONDITION);"? Actually might as well write to a log fire before exiting as well.

But sorry, if a dev actually uses something like in your example he should consider switching to a different job.

Comment Re:Wutend (Score 2) 280

Actually there are better examples from german history.
Under chancellor Bismark Germany had good relations and treaties with most european nations. After he was fired by the young Kaiser Willhelm those ties dissolved and soon after WW1 broke out.
Lesson to be learned, no matter how big you are (and Germany was a lot bigger back then), pissing off everyone isnt a good idea.

Comment Fail (Score 1) 196

First of all. Android isnt an instant success guarantee that some people seem to postulate.
Obviously you need to distinguish yourself. I mean, rock solid hardware, bloody good cameras, you know things like that.
But the big, bloody obious point to be made. Do you know a single phone manufacturer that sells more Windows phones than Android phones? I mean, quite a few have both in stock. There are enough models around that are available with either Android or Windows. Please enlighten me if there are any of those that actually sell better with Windows.

Comment Re:Ho-hum, another really amazing device (Score 1) 147

The phones these days are so bloody wonderful that apart from adding a Fleshlight and 3D holograms, what the heck else do you want.

There have already been several phones with 3D displays, didnt seem to be something people were really interested in.

And, uhm, i heard fanbois of the various smartphone vendors love their phones, but seriously, you know a marketing slogan like "Life Companion" probably wasnt meant you should actually, well, do that bees and flowers stuff with a phone.

Comment Re:Not P2W (Score 2) 189

So, what you're saying is that there is a game mechanic (the XP system) whose effects are to make the game less fun by turning it into work, but which you can pay real money to lessen, and you don't see that as a problem?

Yeah, having an "XP system" is obviously a pretty stupid idea. I doubt it will catch on in any MMO or MMORPG.

Comment Re:Cool Shot (Score 1) 189

The top tier Cool Shot is what the author is saying was pay-to-win. I never used one. I built my mechs to not overheat and thus take advantage of opponents who did.

You must be kidding. Even 3 medium lasers are enough to overheat a mech on all but the coldest maps. With double heat sinks that is.
So you only play with machine guns and Gauss rifles?

Aside from that, yes, Cool shot is pretty much crap.

Comment Re: Background (Score 1) 189

After reading the article it seems to me there is that cool shot item ( how long to grind that out?)

It costs 15k GXP (one time XP cost) to upgrade coolshot-9 modules into coolshot 9x9 modules which are identical to the coolshot 18 (pay currency version).
At around 50-100 GXP per match (~8 minutes) thats about 20-40h of playing the game to be able to upgrade it. Its not used much though (there are non-consumable modules which are better on basicly every build).

Slashdot Top Deals

Today is a good day for information-gathering. Read someone else's mail file.

Working...