|
His Lordship No 151576 wrote: I hope it's the last we ever hear of that vile man ever
again.
Why? Next time he is in the papers it will be because he died.
|
|
|
|
|
His Lordship No 151576 wrote: Now that the turd has been sent back to where he oozed from
Sent back?
The post is about his desire to move to a prison rather than a mental facility.
At least in the US such a move would be more fitting in terms of increased punishment.
|
|
|
|
|
jschell wrote: The post is about his desire to move to a prison rather than a mental facility
Treading in dog shite can mess many carpets.
If there is one thing more dangerous than getting between a bear and her cubs it's getting between my wife and her chocolate.
|
|
|
|
|
The first rule of OCD club is that there must be a second rule so we have an even number of rules...
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair.
Those who seek perfection will only find imperfection
nils illegitimus carborundum
me, me, me
me, in pictures
|
|
|
|
|
What if the list starts at 0? the list ending in 1 would just make me crazy
If you think you can do a thing or think you can't do a thing, you're right - Henry Ford
Emmanuel Medina Lopez
|
|
|
|
|
Emmanuel Medina Lopez wrote: What if the list starts at 0? the list ending in 1 Hmm... that's odd.
It was broke, so I fixed it.
|
|
|
|
|
I can't seem to get even with it.
|
|
|
|
|
|
How does somebody with OCD get even?
Twice.
Twice.
|
|
|
|
|
I thought it was thrice.
I thought it was thrice.
I thought it was thrice.
|
|
|
|
|
twenty-one is a very nice number of vowels to have. 7 x 3 is always good
“Education is not the piling on of learning, information, data, facts, skills, or abilities - that's training or instruction - but is rather making visible what is hidden as a seed” “One of the greatest problems of our time is that many are schooled but few are educated”
Sir Thomas More (1478 – 1535)
|
|
|
|
|
|
But if there were 2 of them...
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair.
Those who seek perfection will only find imperfection
nils illegitimus carborundum
me, me, me
me, in pictures
|
|
|
|
|
var j = 0;
j += 0.1;
j += 0.1;
alert(j); // Alerts 0.2
j += 0.1;
alert(j); // Take a guess
-= Reelix =-
modified 28-Jun-13 10:29am.
|
|
|
|
|
0.3 ???
The signature is in building process.. Please wait...
|
|
|
|
|
So you'd think - But unfortunately not :/
-= Reelix =-
|
|
|
|
|
.30000000000000004 ? why does that happen?
|
|
|
|
|
It's called floating point error.
Ever look at floating point numbers in binary? Probably not, you young whippersnappers have never had to poke your noses behind the curtain.
Just like decimals have certain precision problems (like 1/3), binary has the same problem, but for different numbers.
0.1 in floating point binary is a repeating value like 1/3 is. Modern calculators now have two extra guard digits that are used to round the values, so 1/3 *3 = 1 instead of 0.99999999... It depends on the math package as to how many digits are used versus reported.
0.1 = .0001000110011001100110011 (repeat the 0011 forever) in binary floating point.
Psychosis at 10
Film at 11
Those who do not remember the past, are doomed to repeat it.
Those who do not remember the past, cannot build upon it.
modified 1-Jul-13 10:33am.
|
|
|
|
|
No, you wouldn't as the floating point representation of 0.3 is not possible in a digital computer; it will always be an approximation (and has nothing to do with Javascript). This is a well known issue.
Use the best guess
|
|
|
|
|
0.20.1
|
|
|
|
|
It remains numeric - But nice try
-= Reelix =-
|
|
|
|
|
0.30000000000000000004 (Chrome & Firefox)
Gryphons Are Awesome! Gryphons Are Awesome!
|
|
|
|
|
|
.30000000000000000004 is an 19 place accurate, 20 place number. real is 6 place, double is 12, a native 64 bit real would be 19 place. You're getting the most accurate version of the out of the box "real" numbers. To keep your "most" accurate answer, add 1 and when you render the result, it would be "result/10."
|
|
|
|
|
0.30000000004 (give or take a few "0"s)
It's something to do with the binary representation of the floating-point number, and it catches a lot of people out the first time they run into it.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|