Earlier quoted context omitted.
> Apple's greatest weakness is that many of it's fans and I'd assume people in house assume they are the epitome of UI design when actually it's not. Which led to people like me making a fool out of themselves. Always been using Android, and listened to iPhone users singing the praise of the amazing UI and UX of iOS. Well, eventually iPhone 12 Mini released so I figured, "why not give it a try, can't be worse than my…
The egregious amount of time wasted playing the animations is really the worst. For a great demo of how bad it is, even on my 15 Pro Max — try this: go into a Messages conversation and hit the + next to the text entry field. An ugly, blur-filled animation has to play for about 1000ms EVERY TIME you open this menu up, which is now the way you have to add a photo to the conversation. Heck, I don’t even want the menu, I…
Is my vision that bad? No, it's just a bug in Apple's Calculator
351–360 of 408 posts
Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#352Earlier quoted context omitted.
Coming up in iOS 18.
Unless I missed something, they’ve added a handwriting mode, which is cool but not necessarily an improvement over something like Mathematica. I don’t want to have to carry an Apple Pencil with me and write long hand every time I want to solve an equation.
Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#353A friend doing homework for a university assignment, circa Leopard or Snow Leopard, noticed that Calculator produced negative values when raising a negative number to an even power. The bug turned out to be in CFNumber, in Core Foundation. CFNumber does a lot of fiddly stuff at the bit level for performance, and one of their optimizations for exponentiation was incorrect. Somehow it was never found by tests or due to…
Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#354I like Apple's hardware and underlying OS enough to shell out for MacBook Pros but, man, their homebuilt applications are a PITA. The RPN calculator on my high powered new MBP doesn't have a scientific or engineering notation option. Same on my old MBP as well. I guess it is a feature. https://discussions.apple.com/thread/3527779?sortBy=rank
Sequoia's calculator has RPN with scientific notation now.
Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#355Earlier quoted context omitted.
> Apple products are designed from the ground-up as ad-watching appliances. That’s funny. I have virtually no ads on my Apple devices. I associate ads with Windows and Android. And I have several browsers on my iPad, one reason being avoiding ads.
> I have virtually no ads on my Apple devices. Virtually . It's great when you log into iCloud and only have to deal with the App Store's "Suggested Content" and the Google suggested results in Spotlight Search and the misery of the default YouTube client running 30s midroll ads. Then you can make the little storage nag go away with a convenient $2.99/month payment addressable to Apple Inc. Oh, you wanted sideloading…
Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#356Earlier quoted context omitted.
> CarPlay is a thing because carmakers just can't seem to make a decent "radio" with a touchscreen no matter how they try But CarPlay is 100x worse than Android Auto, even though Apple is supposed to excel at UI and UX, this was the point I was trying to make, not that car makers such at UI/UX.
Having used both, I disagree. What do you prefer with AA?
Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#357Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#358Earlier quoted context omitted.
The older I get, the more certain I am that Apple products are designed from the ground-up as ad-watching appliances. On iPad, you're restricted to a sandboxed environment where you are not encouraged (or in many cases, allowed) to do anything other than watch ads. You cannot sideload apps that are Open Source. You cannot install emulators or fullspeed VM software. You cannot switch the browser out for one you would…
> Apple products are designed from the ground-up as ad-watching appliances. That’s funny. I have virtually no ads on my Apple devices. I associate ads with Windows and Android. And I have several browsers on my iPad, one reason being avoiding ads.
On iOS you install a variety of shady ad blocking browsers because the Safari system of extensions doesn't really let the ad blocker extensions block what is needed. You are also trapped in Safari, which is not a good browser, just something that prevents Chrome from ruining everything.
Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#359Re: Is my vision that bad? No, it's just a bug in Apple's Calculator
#360A friend doing homework for a university assignment, circa Leopard or Snow Leopard, noticed that Calculator produced negative values when raising a negative number to an even power. The bug turned out to be in CFNumber, in Core Foundation. CFNumber does a lot of fiddly stuff at the bit level for performance, and one of their optimizations for exponentiation was incorrect. Somehow it was never found by tests or due to…
In Excel (and some other languages), unary minus has higher precedence than exponentiation, so that -x^2 = (-x)^2 = x^2. That can bite you (for example when calculating the normal probability density function “manually”).