Live data from Hacker News

MacOS High Sierra

apple.com

321–330 of 630 posts

Re: MacOS High Sierra

#321

What about performance on older machines? My mid-2010 MBP is still supported, but I'm afraid of switching if performance takes a hit. It has dual 512GB SSDs and 8GB RAM, so it runs Sierra with more or less success, but it's usable. With all this filesystem level changes, does High Sierra have more hardware requirements than Sierra?

UI wise it should make more efficient use of your MBP's GPU, thanks to Metal 2, but on the other hand that efficiency may be negated again by more visual effects. Things like blur (which cost performance) can be disabled in accessibility settings though.

Not for 2010 models: https://www.apple.com/macos/how-to-upgrade/#hardware-require...

___> ' Metal 2 Supported by the following Mac models: MacBook (Early 2015 or newer) MacBook Pro (Mid 2012 or newer) MacBook Air (Mid 2012 or newer) Mac mini (Late 2012 or newer) iMac (Late 2012 or newer) Mac Pro (Late 2013) '

Re: MacOS High Sierra

#322

What about performance on older machines? My mid-2010 MBP is still supported, but I'm afraid of switching if performance takes a hit. It has dual 512GB SSDs and 8GB RAM, so it runs Sierra with more or less success, but it's usable. With all this filesystem level changes, does High Sierra have more hardware requirements than Sierra?

UI wise it should make more efficient use of your MBP's GPU, thanks to Metal 2, but on the other hand that efficiency may be negated again by more visual effects. Things like blur (which cost performance) can be disabled in accessibility settings though.

Metal isn’t supported on a MacBook Pro that old. I think it requires MBP 2012-2013 or so. My late 2011 MBP doesn’t support it.

Re: MacOS High Sierra

#323
post #311

Earlier quoted context omitted.

Which notifications are you talking about? I have no such experience using Sierra.

Notifications at the top-right, covering the top-right of whichever window is active. Fortunately most of them can be dismissed, but those concerning updates cannot, which is extremely annoying. I've once already accidentally triggered a 15 minute update, which can be extremely inconvenient when it happens at the wrong time. I've found a way to get rid of the update notifications, though: click "details", which opens…

Alternatively, Settings > App Store > uncheck "Download newly available updates in the background"

Re: MacOS High Sierra

#324
post #135

Earlier quoted context omitted.

Yeah, this page isn't the best example, but they're still killing it with the product pages https://www.apple.com/iphone-x/ https://www.apple.com/iphone-8/

It’s funny that I can’t even scroll the iPhone 8 Plus landing page at 60fps on an iPhone 8 Plus.

2017 15" decked out macbook pro here. Not all that smooth.

Re: MacOS High Sierra

#325
post #121
post #117

Earlier quoted context omitted.

Is that referring to blocking ads or just tracking cookies? Why not just block all third party cookies?

IIRC the idea is that (1) it allows third-party cookies of the websites you actually use (like Facebook so FB integration works), and (2) it allows cookies on new websites for the first day or so, and then it starts blocking them. More info: https://webkit.org/blog/7675/intelligent-tracking-prevention...

But "FB integration" also tracks you?

Re: MacOS High Sierra

#326
post #103

> Safari now uses machine learning to identify advertisers and others who track your online behavior, and removes the cross‑site tracking data they leave behind. > Safari now uses machine learning to identify advertisers and others who track your online behavior, and removes the cross‑site tracking data they leave behind I'm starting to like the business model of buying the product more and more. There was a recent t…

You are right that the product comes from the business model. You are however completely wrong about what Google should do. Advertising is not an evil thing that needs to be eliminated. It is a much better revenue source for building services compared to selling hardware. Apple organization is fundamentally built around selling hardware and software as a package for an upfront cost. The organization is design to perfect something than release it. This is 100% at odds with what you need to do with services. You need to iterate all the time and not be trying to perfect something for the new iOS release.

Your advice would lead to maps, gmail, etc be becoming worse but their hardware still not keeping up with apple.

Re: MacOS High Sierra

#327
post #120

When installing a major OS update it's often worthwhile to do a clean install. As a shameless plug of some free software I made, Install Disk Creator will make you a bootable USB installer out of any USB disk you have laying around made from the macOS installer that you download from Apple.

"Install Disk Creator will make you a bootable USB installer out of any USB disk you have laying around made from the macOS installer that you download from Apple."

Wow - thank you! I have a half-page of self-written documentation about turning an apple installer into a bootable USB that I hope to never have to use again ...

Re: MacOS High Sierra

#328
post #75

Earlier quoted context omitted.

I do this every 1-2 major OS releases. Copying from backup gives you a cool total defrag for system and user files, and cleans up all the BS that has accumulated (config files, stuff no longer need, use, etc). I have a script that installs all my settings, brew packages, etc, even App Store apps, from external backup disk -- I'm up and running in 2-3 hours after the base install.

Any chance you have this script on GitHub/somewhere public?

I don't have it polished enough for that, but the gist (no pun intended) is:

I keep all my documents in a single folder called ~/AAA (so it lists on top) with subfolders like /WORK, /PHOTOS /CODE (e.g. /CODE/GO), /MUSIC etc, so I can just rsync that and be totally backuped.

Inside ~/AAA I also have a folder called SYSTEM_FILES, where I keep stuff like bashrc, vim directory etc. My ~/.bashrc etc are just symlinks to ~/AAA/SYSTEM_FILES/bashrc.

So I start with a script that rsyncs the AAA folder from the backup disk to ~ on the Mac, and then creates the appropriate symlinks for .bashrc, .vimrc etc.

Now all my documents are on my Mac and I have a working shell.

Then the script does:

  # install brew
  /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  # a number of brew related installs
  brew install rsync
  brew install mercurial
  brew install watchman
  brew install binutils
  ..

  # some brew-driven font installs
  brew tap caskroom/fonts 
  brew cask install font-roboto-mono
  ..

  # install various linter-related stuff for my ST3
  brew install -g node
  sudo npm install -g eslint
  sudo npm install -g eslint-plugin-import
  sudo npm install -g eslint-plugin-react
  sudo npm install -g babel-eslint
  pip install flake8
  pip install requests
  ..

  # install various big packages from casks
  brew cask install vagrant

  # install mas -- a mac app store cli client
  brew install mas

  # use a wrapper script that extracts mas ids from the apps I want
  ~/mas_install.py Pixelmator
  ~/mas_install.py Skitch
  ~/mas_install.py Evernote
  ...

  # use a shell script to copy .bashrc and co
  # create symbolic links etc
  ~/prepare_environment.sh

  # configure the Mac with various "defaults" options
  defaults write NSGlobalDomain AppleShowAllExtensions -bool false
  ...

  # finally the script sets up Mail.app, copies my Sublime Text packages to the ~/Library/Application Support etc.

Re: MacOS High Sierra

#329
post #103

> Safari now uses machine learning to identify advertisers and others who track your online behavior, and removes the cross‑site tracking data they leave behind. > Safari now uses machine learning to identify advertisers and others who track your online behavior, and removes the cross‑site tracking data they leave behind I'm starting to like the business model of buying the product more and more. There was a recent t…

You are right that the product comes from the business model. You are however completely wrong about what Google should do. Advertising is not an evil thing that needs to be eliminated. It is a much better revenue source for building services compared to selling hardware. Apple organization is fundamentally built around selling hardware and software as a package for an upfront cost. The organization is design to perf…

Passive advertising is not an evil thing that needs to be eliminated. But when companies start building dossiers on all of us that even intelligence services would be jealous of, that is evil.

Re: MacOS High Sierra

#330
post #246

Earlier quoted context omitted.

I haven’t used OpenOffice much? But it feels much less polished than Office or iWork. I guess there’s Google Docs, but even that’s limited compared to even iWork. Is there anything actually decent that can be used for “Office” stuff on Linux?

Libre office and google docs more than do it for everyone I know.

Unfortunately they don't (and probably can't) do it for everyone. What is needed is bug level compatibility with msoffice (including visual basic) and seemless interoperability (including add ons). Not only is this an insanely difficult target - it is also a moving and potentially hostile one to interoperate with. I've massive respect for the libreoffice developers but I don't envy them the task of msoffice interoperability.
Post reply on HN