Because they are morons. i.e. OSX 10.10.5's Calculator app:
Enter: 88.02
Press: +/- Will show: -88.02000000000001
Press: +/- Will show: 88.02000000000004
This isn't rocket science just basic Computer Science. Apparently these morons haven't figured out what a sign bit is. Maybe they should talk to their iOS division...
-- WhereTF is the default Calculator App on iPad??? You shipped one with iOS.
> This research confirms a lot of the old cliches; the strongest contributing factors to happiness are meaningful relationships with family and friends,
> Only two months ago I had an aged Dell RAID array let me down. I have no idea what actually happened, but it appears some error crept in one of the drives and it got faithfully spread across the array and there was just no recovering it. If I didn't have good backups that would have been about 12 years of the company's IP up in smoke. I just thought I'd share.
> Because Linux normally lets you use your choice of file system on top of your choice of volume manager, on top of whichever RAID implementation you choose, with your choice of IO scheduling options, ZFS isn't exactly the best fit. ZFS mashes all those different things into one big blob. That's not really how Linux is designed.
Criticizing ZFS for "rampant layering violation" has been discussed to death before
"Dumb" API's, such as the ones implemented in Linux, have a STRICT layered approach like this:
Problems start when each layer needs information at the layer above it. This is epitomized with the design flaw in hardware RAID via the write-hole. Link to English version
In contradistinction ZFS takes a holistic, unified approach:
e.g. The original RAIDZ implementation was written in 599 lines of code in vdev_raidz.c -- less code equals less bugs. https://github.com/illumos/ill...
> That's the same issue as systemd
No it doesn't. You are comparing apples to oranges. ZFS works because it intentionally "Flattened the stack" -- Yes, this runs counter to the layered Unix approach -- but sometimes that is NOT the best design decision.
I'm not a Seth fan. Family is OK but the jokes drag on _far_ too long.
I initially wrote-off The Orville pre-judging it to be just another dumb Star Trek spoof. I couldn't have been more wrong. I have loved the first 4 episodes! It is basically an updated TNG.
The problem is 99% of people are fucking morons. They have no self respect so they let others waste their time, money, space, and bandwidth instead of thinking for themselves.
-- If "blocking ads is unethical" then by the same retarded logicads are immoral. You can't have one without the other.
> If itâ(TM)s okay to violate Hollywood movie company copyrights (as is the prevailing view here)
Apples to Oranges comparison.
While I don't entirely buy it the point of the argument is this:
* No-one is price-gouging with Linux * Sticking it to "The Man" is 1 of two tactics for over-priced regurgitated movies. (The other is to abstain.)
With Linux you _already_ have pretty generous terms.
If Hollywood accepted a "Pay-What-You-Want" model I think more people would respect their copyright. But instead we end up with Bullshit that making a backup _requires_ one to break DRM --- that tells me they are greedy fucks. Why would someone respect their copyright again?
CD prices were supposed to drop too, but we're still waiting for _that_ to happen...
Obviously you've _never_ worked on any games. Art, Music, Levels, Previous Executables, etc. are all valid things to keep in a repo.
Stop using shitty source repositories that don't know how to handle binary blobs.
Scientists should have been doing this all along so they can get independent confirmation.
That would require Google actually having some balls.
The pussification will continue until everything is offensive (to someone.)
--
Hate Speech IS censorship.
Yeah that is rather strange.
One reason might be that the original .exe's are no longer available?
Does anyone know if EA is still selling any of the effected games?
> I haven't ever heard of someone manipulating the bits in a floating point number.
That's because you lack experience. A classic trick is to use an union:
union int_float_t
{
uint32_t i;
float f;
};
If you actually understood the IEEE754 32-bit and 64-bit format you wouldn't be so naive.
https://en.wikipedia.org/wiki/...
https://en.wikipedia.org/wiki/...
1. Change name to include Blockchain
2. ???
3. Profit !
So apparently the missing step 2 has been found:
2. Wait for morons to over-value your stock
More Apple shenanigans with OSX 10.10.5 Calculator app:
99.99
[+/-]
= -99.98999999999999 (WTF?)
-0.01
= -99.99999999999999 (WTF!?)
Apple Logic: 99.99 [+/-] - 0.01 = -99.99. ** double facepalm **
Because they are morons. i.e. OSX 10.10.5's Calculator app:
Enter: 88.02
Press: +/-
Will show: -88.02000000000001
Press: +/-
Will show: 88.02000000000004
This isn't rocket science just basic Computer Science. Apparently these morons haven't figured out what a sign bit is. Maybe they should talk to their iOS division ...
--
WhereTF is the default Calculator App on iPad??? You shipped one with iOS.
You are doing it wrong.
Why do you even have a gold digger in the first place??? Find someone who treats you with respect.
> This research confirms a lot of the old cliches; the strongest contributing factors to happiness are meaningful relationships with family and friends,
Agreed.
Simon Sinek on Millennials in the Workplace
Happy Wife, Happy Life
Secret to Happiness in 3 words: Remove false expectations.
/cynical I'm shocked, shocked I tell you, that yet-another-corporation lied about their stats.
Other good puzzle games include:
* Pythagorea, iOS, Android
* Pythagorea 60 iOS, Android
* The Witness
* The Talos Principle
> What if the universe always existed, and always will?
Considering that the 1st Law of Thermodynamics says that:
Energy can be neither created nor destroyed.
I would tend to agree with you.
Either
a) The universe has always existed, or
b) God has always existed.
Either way you end up with the atheist's F word: Faith.
> Because Linux normally lets you use your choice of file system on top of your choice of volume manager,
The problem is: btrfs, exfat, ext3, ext4, fat, jfs, reisderfs, and xfs ALL SUCK -- they all propagated write errors
FS / read / write
btrfs.. | prop prop prop
exfat.. | prop prop ignore
ext3... | prop prop ignore
ext4... | prop prop ignore
fat.... | prop prop ignore
jfs.... | prop ignore ignore
reiserfs | prop prop ignore
xfs.... | prop prop ignore
> Only two months ago I had an aged Dell RAID array let me down. I have no idea what actually happened, but it appears some error crept in one of the drives and it got faithfully spread across the array and there was just no recovering it. If I didn't have good backups that would have been about 12 years of the company's IP up in smoke. I just thought I'd share.
It may have been the RAID write hole ?
See Page 17
> Because Linux normally lets you use your choice of file system on top of your choice of volume manager, on top of whichever RAID implementation you choose, with your choice of IO scheduling options, ZFS isn't exactly the best fit. ZFS mashes all those different things into one big blob. That's not really how Linux is designed.
Criticizing ZFS for "rampant layering violation" has been discussed to death before
"Dumb" API's, such as the ones implemented in Linux, have a STRICT layered approach like this:
* Volume Management
* File Management
* Block (RAID)
Problems start when each layer needs information at the layer above it. This is epitomized with the design flaw in hardware RAID via the write-hole. Link to English version
In contradistinction ZFS takes a holistic, unified approach:
* Volument Management <--> File Management <--> Block
e.g.
The original RAIDZ implementation was written in 599 lines of code in vdev_raidz.c -- less code equals less bugs.
https://github.com/illumos/ill...
> That's the same issue as systemd
No it doesn't. You are comparing apples to oranges. ZFS works because it intentionally "Flattened the stack" -- Yes, this runs counter to the layered Unix approach -- but sometimes that is NOT the best design decision.
Meanwhile Oracle keeps flailing about with Btrfs.
> In the Land of More Dough where the Shadows lie.
FTFY. :-)
I'm not a Seth fan. Family is OK but the jokes drag on _far_ too long.
I initially wrote-off The Orville pre-judging it to be just another dumb Star Trek spoof. I couldn't have been more wrong. I have loved the first 4 episodes! It is basically an updated TNG.
Jonathan Frakes (Riker) will direct episodes in both series! So them watch'em, and you be the judge. Who knows, you might end up like both. ST:D for being too serious, and The Orville for being too light.
The Orville (TV Series) (1 episode)
- Pria (2017)
ST:D -- not yet announced
> It's a solid show
That's debatable. The Orville is more Star Trek then ST:D
> but this pay channel crap screws everything up.
(Almost) Everyone bitches about wanting TV "a la carte" -- this is what it looks like. Price Gouging on BOTH sides.
^^ THIS.
Main St. built America.
Wall St. robbed it.
And zero fucks were given about some bullshit "Rule"
The real issue is why are you blind to the narcissistic tendencies of both leaders and feel the need to defend them when WW3 is _much_ bigger issue??
> Even North Korea must know that internally.
You have a dumb-ass histrionic narcissistic "supreme leader" vs a impulsive narcissistic moron world leader.
North Korea is dumb enough to nuke the USA.
The USA is dumb enough to wipe North Korea off the face of the earth.
You do the math. Stupid people do stupid things.
Intelligent people will occasionally act stupid.
Stupid people act stupid all the time.
There is no hope for these two.
--
Judaism is the source of Christian indulgences: Murdering an innocent animals for heaven insurance.
Sure you could.
Make advertising illegal.
The problem is 99% of people are fucking morons. They have no self respect so they let others waste their time, money, space, and bandwidth instead of thinking for themselves.
--
If "blocking ads is unethical" then by the same retarded logic ads are immoral. You can't have one without the other.
> If itâ(TM)s okay to violate Hollywood movie company copyrights (as is the prevailing view here)
Apples to Oranges comparison.
While I don't entirely buy it the point of the argument is this:
* No-one is price-gouging with Linux
* Sticking it to "The Man" is 1 of two tactics for over-priced regurgitated movies. (The other is to abstain.)
With Linux you _already_ have pretty generous terms.
If Hollywood accepted a "Pay-What-You-Want" model I think more people would respect their copyright. But instead we end up with Bullshit that making a backup _requires_ one to break DRM --- that tells me they are greedy fucks. Why would someone respect their copyright again?
CD prices were supposed to drop too, but we're still waiting for _that_ to happen ...
> I almost always sign them with a circle, square and triangle. N
I always sign with an X.
Between the two of use we have the entire PlayStation button symbols. :-)
> No one in the US ever check.
Yup, that's my experience as well -- no one cares. Hell 99% of the time they don't even check ID. *facepalm*