Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
XBox (Games)

Gamers Pay To Play With Girls 408

taucross writes "A new site allows lonely Xbox 360 gamers to pay a prescribed fee for a few minutes of game time with one of the 'PlayDates', a girl who is paid to play video games. Gamers can choose to have a 'flirty' or 'dirty' experience with one of the PlayDates. Is this what we meant when we said we wanted 'adult gaming'?"

Comment Re:Developers section red now ? (Score 1) 387

Java has BigDecimal and BigInt which make possible working with big numbers.

The drawbacks of using these classes are performance (maybe it will be ok when running on future CPUs) and ease of use, since Java doesn't let the programmer overload operators you have to write stuff like:

BigDecimal b1 = new BigDecimal("100.04");
BigDecimal b2 = new BigDecimal("0.33");
BigDecimal result = b1.multiply(b2);

Slashdot Top Deals

Any program which runs right is obsolete.

Working...