Big surprise. Video Pros now, developers next, common users last.

While Apple is focusing on trying to create the thinnest notebook on every generation, other companies are actually making useful computers, laptops or otherwise.

Right now, I've decided to take the money I'd spend on the cheapest Macbook to buy a desktop system, plus a chromebook. I can have mobility and a lot of performance, for a fraction of the price.

Even Windows is becoming more viable again, ubuntu core and all.

What's the viable alternative? I'm looking for a replacement for my 2013 rMBP. Every PC laptop has a fatal flaw. The Spectre x360 15 comes close, but has less battery life (despite having a slightly larger battery), is bigger and heavier, has only a dual core processor, and has a worse screen.

The XPS 15 is another option. Even with a significantly larger battery it doesn't seem to have better stamina than the MBP. It's apparently been plagued by QA problems, and offers a choice only between a 1080p and power-hungry 4K (can't get high-DPI and 10 hour battery life in the same package).

I suspect, looking at the sales numbers, that you're wrong. Apple is giving up on a certain group of users (who need fast GPUs). They gave on those users years ago by shipping crappy OpenGL drivers. But they've correctly perceived that common users don't want ports, or expandability. They want a fast machine with a great screen and all-day battery life, and they want to hit those metrics in the smallest package possible.

I recently trashed my 2011 MBP (oops) and spent a month without it. I decided to try using my corporate-provided Surface Pro 4 instead to see how I could get on with a similar-spec Windows 10 PC for personal use.

By the end of the month I had gone slightly loopy (seriously - MacBook withdrawl is real), gave up and bought a 2015 rMBP. Personally I find macOS, and its deep integration with Apple's hardware, too intuitive and 'invisible' to the way I work to give up on it.

I feel like I'm in prison or an insane asylum when I have to use my Mac or iOS devices after enjoying the freedom that I have using Windows all day.

I could go very far into detail here and list all of the extremely annoying limitations that I run into, but instead I'll respond to your vague complaints with my own. Apple quite obviously wants absolute control over their device and their software whereas Microsoft lets me to do whatever I want with my computers and my software.

I have to have a Mac to make iOS apps, but as soon as those are no longer a thing I'll toss all my Mac stuff straight into the garbage.

> whereas Microsoft lets me to do whatever I want with my computers and my software.

Not in my experience. My Windows 10 automation/unscrew-up script alone is like 5 kloc. And I bet 70% of that script could be replaced if I had real control of the system, like dropping a .config file in some folder instead of having to find hidden settings with nonsensical names deep down the regedit hole. Another example, you have to use some stupid hacks to make sure there are no Flash DLLs in your pc. No matter what you do they always come back in some security update.

5000 lines for a fresh install? That's... a lot. Is that on github somewhere?

It's based on several scripts from Github. A lot of lines are just regex and lists (apps, services, tasks) of things to disable or remove.

I recommend you do your own script by choosing what you want from each type of script. I would release my script if I was sure it wouldn't break random people's computers, because IT WILL. I'm also running Windows 10 enterprise because I want as little telemetry and things shoved up my ass as possible.

Some Windows updates can change registry keys or disable certain policies. I monitor the commit log of other repos to know what I need to update, but they don't always cover everything. Feels like a lot of work but it's actually not.

Here's how I structured it:

- admin.ps1

--- admin-config.ps1 (policies, tweaks)

--- disable-services.ps1

--- remove-flash.ps1

--- ...

- user.ps1 calls

--- user-config.ps1

--- disable-gamedrv.ps1

--- disable-services.ps1

--- ...

Because if you're using a regular user account (like you should) you need to run 3 things:

- admin.ps1 as admin

- user.ps1 as admin

- user.ps1 as your regular user

I gave up on using runAs or any of the things recommended on stackoverflow, something always go wrong so it's easier to do it this way.

For a fresh install, I recommend that the first thing you do is update everything and let Windows install the 200 apps you don't want. Run the 3 things like I mentioned, reboot, run it again, reboot.

https://github.com/cluberti/VDI/blob/master/ConfigAsVDI.ps1 https://github.com/W4RH4WK/Debloat-Windows-10/ https://github.com/dfkt/win10-unfuck https://gist.github.com/sven212/5febf372aaa6e4cc1fda71ad9637...

My installation is months old and it runs like new even after heavy usage, hardware changes, tons of apps and games installed/uninstalled (this kills Windows 7). Just be careful what you remove, don't ever install ccleaner or any shit. All you need is sysinternals tools.

I'm too lazy to proof-read/make this shorter, hope it helps somebody.