At Apple, Mac Is Getting Far Less Attention - How It Handled the New MacBook Pro Is a Living Proof (bloomberg.com)
Apple CEO Tim Cook may have assured employees that the company is committed to Mac computers, but people working in the Mac team say the company now pays far less attention to the computer lineup, according to Bloomberg's Mark Gurman, who has been right just about every time with Apple scoops. From his report: Interviews with people familiar with Apple's inner workings reveal that the Mac is getting far less attention than it once did. They say the Mac team has lost clout with the famed industrial design group led by Jony Ive and the company's software team. They also describe a lack of clear direction from senior management, departures of key people working on Mac hardware and technical challenges that have delayed the roll-out of new computers. While the Mac generates about 10 percent of Apple sales, the company can't afford to alienate professional designers and other business customers. After all, they helped fuel Apple's revival in the late 1990s. In a stinging critique, Peter Kirn, founder of a website for music and video creators, wrote: "This is a company with no real vision for what its most creative users actually do with their most advanced machines." If more Mac users switch, the Apple ecosystem will become less sticky -- opening the door to people abandoning higher-value products like the iPhone and iPad. The report also sheds light on battery issues in the new MacBook Pro lineup that many have complained about. From the report: In the run-up to the MacBook Pro's planned debut this year, the new battery failed a key test, according to a person familiar with the situation. Rather than delay the launch and risk missing the crucial holiday shopping season, Apple decided to revert to an older design. The change required roping in engineers from other teams to finish the job, meaning work on other Macs languished, the person said. The new laptop didn't represent a game-changing leap in battery performance, and a software bug misrepresented hours of power remaining. Apple has since removed the meter from the top right-hand corner of the screen.
been like that for years now. Apple would be dumb to delay a MBP launch to work on a product a lot less people are going to buy.
Apple is definitely losing it's rep among people that actually use computers for things other than surfing the web and checking email.
I would be a lot less annoyed by the lack of Mac attention at Apple if OS X would run on non-Apple hardware.
...blah blah blah!
.
The Mac lineup looks to be on life-support, if not completely abandoned, at this point.
Anyone looking at a move to the Mac should really examine their decision process to assure it takes into account long-term viability of the product line.
For this past year, it has appeared that Apple is only interested in doing the bare minimum to string along current Mac customers. Innovation costs money, and Apple is clearly not looking as if it wants to commit innovation money to the Mac line anymore.
It feels like any hardware/software decisions they make with Macs have been alienating pros... Taking forever with significant hardware refreshes, non-modular hardware design, elimination of useful ports and connectors, Final Cut Pro X
Twinstiq, game news
Although insulated by iPhones etc, Apple would still do well to recall what happened to another computer company that ignored what users were *actually* using their computers for. I speak, of course, of Commodore, whose Amiga ruled the video world for a while, even as C= executives pushed low end game machine versions of the Amiga, vainly hoping to repeat the success of the C-64.
Open up OSX to non blessed hardware. Then you can stop worrying about those annoying people that want a Professional workstation class laptop when you want to deliver a netbook.
Do not look at laser with remaining good eye.
I've been a mac user for years so I pay attention to what they say in the annual conf calls. Every freaking year Steve Jobs or now Tim Cook would say that they have exciting new products in the pipeline and it's going to be an exciting year ahead.
And every single year we get nothing exciting or innovative or from the Mac side even a decent refresh. I'm now making the effort to move away when possible. I did the Fire TV instead of the new appleTV (which is good since the appleTV doesn't pay nice with the Harmony Hub) and there is no way I'll jump on the Home infrastructure. I like the Insteon system (currently).
The wonderful Intel NUC is making for a nice replacement for my mac mini (for headless servers) so that area is covered.
That leaves a replacement for the MacPro and my notebook (MBP). I have another 2 years or so before I'll be refreshing so I'm just going to wait.
The fact that they threw away monitors makes getting a Dell monitor that much easier. For my work the Dell's have been great.
Sad to see how much I've spent over the past 20 years but before that I was buying a Sony or HP every stinking year. It was nice to go 3+ years and then be able to hand the replacement to a family member. We have MBPs that are going on 8 years old still running strong.
It may have taken 30 years, but finally the Mac team now knows what it felt like to be on the Apple ][ team.
Support Right To Repair Legislation.
You have to have a Mac to make iOS apps.
Coder's Stone: The programming language quick ref for iPad
What's the best hardware nowadays to run MacOS/X? Ahem, one with HDMI and normal USB ports. And magsafe.
A one or two year old Mac.
Faster! Faster! Faster would be better!
At Apple, prosumer customers are getting far less attention.
And don't think they haven't noticed it.
Apple just needs to move it or milk it. Put some effort into getting new Macs out or spin off Macs to another company (like how Claris/FileMaker was done.) Keep iOS and macOS source trees open between both ventures.
Ideally, Apple should jettison Macs to a subsidiary that can focus some real attention onto them. Not just consumer level, "shinies", but after other markets, such as schools, colleges, and even the enterprise. With this, the subsidary could offer NDAs and roadmaps to customers, so timing of mass purchases can be synced with model refreshes.
This split will let Apple do what it wants to, but give customers the feeling of stability that is needed when buying bread and butter computing needs.
I know we're still a few years off, but I'd love to see Apple spin off the Mac book to a company that just concentrates on churning out MacBooks circa 2015 (with all the USB ports) for techies. The rest of Apple can FOAD - I have new use for any of the iTunes stuff.
Because I'm writing this on a laptop with a touchscreen and I barely use it. The stylus I would never use. On a hybrid laptop/tablet like a Surface it might make a bit more sense on a desktop, almost never. Sometimes maybe on a pure laptop.
Well, there's spam egg sausage and spam, that's not got much spam in it.
I don't think I'm a typical tech consumer, but I think consumers like me are pretty important to Apple's success in the last decade.
I've had pretty much Apple everything for a little over a decade. My Macs are always bought infrequently. I've had four iPhones, three Apple TVs, and two iPads in the time I'm on one Cinema Display. I've had three iPhones in the time I've had my current MacBook Pro. Ten percent of sales, sure.
But here's the deal: I'm about to buy a laptop that isn't a Mac. When I do, I'll probably stop updating all my other Apple products too. I had a Mac first, and even today, I buy all those other things because of how nicely they integrate with a Mac. The Mac anchors all my other Apple products, and frankly, I anchor the tech purchasing decisions of a lot of my friends and family.
Today is your lucky day, then. Here you go:
My macro language allows labels of traditional variables to begin with numbers.
Technically speaking, there's no good reason a compiled language can't be designed from the ground up to allow a variable name and/or a function name to begin with a number; it's an optimization that makes the source simpler to parse for the compiler and more restrictive for the programmer, which isn't exactly an ideal circumstance.
For an interpreted language, requiring labels to start with an alpha character probably saves a little (very little) time as a token would have to be checked to see if it's a variable first unless there's an indicator that makes it explicit, either required or optional.
Bottom line, if you decide that certain orders of numbers and alpha have meaning because of their order, again, you're basically making it easier on the computer, and harder on the programmer. That is the standard way to proceed, but it's habit, not a well thought out circumstance.
Annnnnd... there's markup languages, such as HTML...
<a name="2easy2disprove"></a>
Which can then be used like this:
<a href="pagelabelison.html#2easy2disprove">Let's go to a label!</a>
So there you go. 2languages (hey, look, English allows it too...) where labels can begin with numbers. As I said, HTML is a markup language, and English of course is a traditional language, but you were sloppy enough to not rule them out, so...
You won 3thrice! :)
--fyngyrz
The Mac Pro using the 12 core Xeon is based on Ivy bridge, that is quiet old. There has been Haswell, Broadwell, and now Skylake since it came out. The Wifi doesnt support N just AC. Only 1 Xeon CPU. Only 64 gigs of memory when you can buy 64 gigs for a desktop now cheap. And they still use the AMD FirePro D700 for the gfx card is bad. Its about the speed of a 980, when nvidia 1080's are out.
They gave up on power users, they gave up on power laptops. If you are an adobe photoshop user and you need speed, you migrated to windows awhile ago.
I'm writing this on a 13" mid-2011 macbook pro and I'm ready for a new purchase. For the first time since, well let's see, 1989, I will not buy an Apple computer. I'll probably purchase a Razor Blade Stealth. I will still need an Apple desktop for the time being, as my work demands the use of Pro Tools on an also aging 21 inch iMac. When you think about it, that's a pretty damn, damning statement on the current state of Mac development. The current lineup of MacBook(s) is overpriced, completely un-upgradable and just does not suit my needs. I will miss OS X, it's served me well, but it's development in recent years towards Mac iOS features just doesn't interest me. I'd rather purchase something like the Stealth, keep Windows on it and run Linux in a virtual machine for daily email, web browsing etc... When you start to lose loyal 25 year customers, something is really, really wrong. So Apple, it's been a nice ride. No longer will I extol your virtues to other users, no longer will I purchase your products or support your developers (I'm also an Android user). I stuck with you all those years, bought your stock at around 12 bucks a share when things were really dim for Cupertino in the '90s. It's been nice, but it's time to move on.
the company can't afford to alienate professional designers and other business customers. After all, they helped fuel Apple's revival in the late 1990s.
Yes, of course they can. If 10% of your userbase represents 90% of your costs, then it's not only affordable to get rid of them, it's profitable as well. Contrarians will argue that these people are "evangelists," responsible for bringing other people to the platform, but a) there's little evidence that's true, and b) even if it is true, they're doing a terrible job at it, objectively. Apple could definitely shut down the Mac line and go one of two ways:
1) Support OS X installations on commodity hardware (not super difficult).
2) Re-write Xcode for Windows or Linux (or both) to allow continued development for its, ahem, more profitable platform.
"Creative types" are more tied to the tools than the OS for their productivity. Most of the popular content-creation applications are available on Windows already, and have been for years.
Personally, I hope Apple doesn't kill OS X (which is the heart and soul of Macs, not the hardware), but they could easily cede the PC hardware market and be just fine, and maybe even better off. Like Microsoft, they could partner with manufacturers to ensure (or "ensure") compatibility.
https://www.eff.org/https-everywhere
Well, let's think about this one...which one would you rather manufacture?
- A high-margin computer, with high end components, requiring a lot of engineering effort to get right and keep supporting over an extended life cycle, or
- An even higher-margin, throwaway, replaced every 2 years, locked down device, on which you get a 30% cut of every single thing a user installs on it -- requiring lots less engineering since user interactions are artificially limited
I have been a long-time Mac user and supporter, but I'm mainly on Windows and Linux PCs now. Even locked-down spyware-laden Windows 10 is more customizable than Mac OS is these days, and most Windows/Linux hardware manufacturers don't solder the components onto the motherboard. (Surface Pro, you're the exception of course, but at least there's still ports on it.)
Ignored as the Mac lineup has been, I for one am thrilled they have yet to jump on the [IMO] asinine touchscreen/stylus laptop craze. YMMV and that's perfectly fine, but it fits not at all into my workflow.
"I'd just like to emphasise that taking a million years isn't a metaphor here..." -Rich Bradshaw
Considering the shite OS X / MAC OS has become. The last version that was ok was 10.6.8
but it fits not at all into my workflow
I felt the same way, then I bought a Surface and started using it, and I realized how useful and intuitive it is.
it does work just that the license says no to running in a VM on non apple hardware.
The new mac pro has failed in meany ways.
And they may of hit the wall of how thin you can go vs the power needed for an pro level workstation.
They need look the HP Z line to see what can done with pro workstations.
Run OSX under the VMware hypervisor and enable graphics pass through. Then you can do the same thing for Windows or Linux and switch between them as needed.
Only the State obtains its revenue by coercion. - Murray Rothbard
IMHO, Windows 10 does not do touchscreen and stylus very well, except for very basic tasks.
Many of the built-in apps have only very rudimentary support (through the widgets they use), but the fundamental issue remains: older apps were not designed for touch and stylus in the first place.
"We mustn't be caught by surprise by our own advancing technology" -- Aldous Huxley
... the company can't afford to alienate professional designers and other business customers.
I believe that ship has already sailed...
#DeleteChrome
What about letting a dell or hp do the workstation and server part. Apple can make the thin and under powered imac's and mini's.
But they don't lose the pro market that needs power and does not really want a thin system with poor cooling.
What's the best hardware nowadays to run MacOS/X? Ahem, one with HDMI and normal USB ports. And magsafe.
A one or two year old Mac.
Phew! That's what I have.
In fact I'm getting the battery replaced in my MBP to extend its useful life. I tried the new keyboard on the new MBPs and did not like what I felt under my fingers. That's an issue when my primary use of the MBP is writing and programming. I can adapt to USB-C and touch bars, but the keyboard is non negotiable.
I should use this sig to advertise my book ISBN-13 : 978-1501515132.
Not to dangle a caret in front of you, but let's return to a time where you don't cursor so easily. Because she may be on her period, and so you should really stop pounding on her so much. Otherwise, one day, she's going to turn on you with a rolling pin, and splat!
You have to have a Mac to make iOS apps.
Schnapple
I dunno... it certainly seems that way, especially when you consider that Macs (or rather, OSX-running stuff) represent what, 10-20% of their revenue nowadays, when compared to iPads and etc?
...
I think it's part and parcel of Apple's response to usage patterns among the general public (not the geeks, but the general public), which makes more sense to them, at least financially.
10% of Apple's revenue is still 20 billion dollars. Not exactly a niche market (or maybe it's a really, really big niche).
Apple decided to ditch the headphone jack on the iPhone because they decided they couldn't move forward with designs if they hung onto it.
Absolute bullshit! The iPhone 7 is almost identical in design to the iPhone 6s which came a year earlier and the iPhone 6 which was a year earlier than that.
Everyone said it was a horrible choice and no one would buy the iPhone.
No they didnt. They said it was a terrible choice but not that no one would buy one, if you want iOS you have no choice but to buy what Apple sells.
Anyone who thinks the new laptops aren't pro grade hasn't used one.
Rubbish. The thermal performance is worse than my 2015 one because the processor TDP hasn't been significantly reduced while the space for cooling has so this results in excessive fan noise and throttling. The GPU is comparatively low, better than last year's model but far short of what is available in other laptops. The 16GB RAM limit is just poor particularly when doing HD video editing, it's constantly paging to disk and while the SSD has gotten up to speed with the NVME drives that have been available for a while now it's still a *lot* slower than RAM.
I'm writing this on my first-gen Surface Pro, which I bought in the summer of 2013 - It's still going strong. Three years on, how can Apple still not have a touchscreen and stylus on their computers?
Because nearly TEN years ago, Apple tried it and hated it.
In fact, they even have a Patent filing from 2010 that looks JUST like the "amazingly innovative" Surface Studio.
Honestly; do you really think that the leader in Touch hasn't built dozens, if not hundreds, of touch-Mac prototypes?
I've been debating switching from my Mac to A Razer. You know what the biggest thing that's deterred me So far is? iCloud. I'm locked into the entire apple ecosystem because I love how all my contacts etc sync seemlessly across my devices. Once the Mac line is so underwhelming for its price that I do switch, I no longer need my iPhone or my iPad. I can buy an android or whatever else I can sync with. So to me this comment is SPOT ON. Macs may only be 10% of revenue but my Mac was my FIRST apple product, and it was a gateway drug to all the stuff I bought after. If you kill the loss leader, it will be a mistake.
Bring back the 17" MBP while they're at it. Older users like myself need bigger displays.
Ditto. Fortunately, still a few out there (or were in October, the last time I really looked).
The Mac Mini is not a viable computer
You mean the new, downgraded Mac Mini with 8GB soldered RAM? I've found three of the 2010-2012 vintage over the past year or two, and they're great, especially as remote servers. One of them is even a late-2012 Quad 2.3 i7 / USB 3.0 model. That was the only time you could get both upgradeable RAM and USB 3.0.
#naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
I really liked this thread and the above post especially. It shows that I am not alone, because that is pretty much where I am. I have had apples for a very long time. I have convinced friends and companies that I have been in to go mac. Now, I can't do so with a straight face. Deep in my soul, I know my current MacBook pro will be my last one, and it saddens mean. They were insanely great computers. Now, you are just insane to get one.
"Liberalism is a very noble idea, currently controlled by some very bad people. Be sure you do not get the two confused.