I'm on a maxed out 2013 Macbook Pro and I will fight tooth and nail to keep this laptop functioning for as long as possible. It has a decent keyboard, still powerful processor (2.3 GHz Intel Core i7), 16GB RAM, dual GPU. and MagSafe!!! Beloved MagSafe why on earth did they kill you I will never understand..<p>I had the Apple store replace the screen and battery about a year ago. The screen was suffering from the anti-reflective coating (1) recall, but I missed the repair program window. In every customer support conversation I had leading up to the repair, they would hint at "consumer protection law". This was a clue that if I then said "CONSUMER PROTECTION LAW" they would be forced to do the recall for free even though it was out of date. They ended up giving me the screen and battery for free.<p>Apple Store failed to identify and fix one issue that plagued me though, which was spontaneous black screen and poweroffs, especially when running on battery below 80%. It seemed like a power issue, or heat issue. I lived with it for two years, lugging a power brick around whenever I moved spots. With the Apple Stores closed due to covid, I contacted a local third party mac repair person. They said they've seen this before, it's a CPU power issue, and if you run a small script to keep the CPU out of really-low-power state it will stop happening (2). And they were right! So if you're experiencing this annoying problem as well, try this python script:<p><pre><code> from time import sleep
import os
while True:
sleep(0.0002)</code></pre>
You may have to tweak the sleep value - higher values will let your CPU relax more but may trigger the power issue. Lower values will increase the CPU load but decrease the chance that the CPU hits this condition.<p>I've been running this script for 2 weeks now and no freezes. It generates about 6-8% CPU load, so obviously my battery time is suffering, but the alternative (random freezes all day) was so annoying that I'm okay living with this.<p>1: <a href="https://www.macrumors.com/2017/11/17/apple-extends-free-staingate-repairs/" rel="nofollow">https://www.macrumors.com/2017/11/17/apple-extends-free-stai...</a><p>2: <a href="https://www.reddit.com/r/mac/comments/9pyort/apple_macbook_pro_sudden_crash_fix_for_models/" rel="nofollow">https://www.reddit.com/r/mac/comments/9pyort/apple_macbook_p...</a>