Live data from Hacker News

Ask HN: M1 Pro 14' still worth it for development?

news.ycombinator.com

11–20 of 37 posts

Re: Ask HN: M1 Pro 14' still worth it for development?

#16
Of course. The M1 is already lightyears ahead of any kind of other past Macbook model. I have the Air M1 (that doesnt even have active cooling) and it's blazingly fast in anything I throw at it.

Granted, maybe it's a valid consideration for video editors and the like, but you won't notice significant differences in our line of work.

Re: Ask HN: M1 Pro 14' still worth it for development?

#17

It's not a good question tbh ( http://www.catb.org/~esr/faqs/smart-questions.html ) If your question is about whether to wait for the next iteration see: https://buyersguide.macrumors.com/#mac As a general purpose machine for development / web dev, then the answer is yes, it's still worth using because it was worth using when it first launched and that didn't change. Many guides come with instructions specifically fo…

> It's not a good question tbh

ESR is mostly wrong about this. He assumes that the person asking the question is not writing in good faith or that they have not considered and dismissed alternatives, without evidence. It's almost always appropriate to assume the person asked what they asked for a good reason ignore the question if you don't know the answer.

SO is plagued with this nonsense, where people answer the question they wish was posted (because it's all they know?) instead of just moving on.

Re: Ask HN: M1 Pro 14' still worth it for development?

#18

Go for the 16"; the extra size gets you better cooling, screen real estate and battery life for roughly another $250 or less.

Is there ever a reason to go for the smaller factor? At work, we got 13" macbooks, and I wish we'd gotten the one-size-up ones. I'm a reasonably healthy human being, and can easily carry the slightly larger version - not that I do, because 99% of the time it's sitting on my desk, anyway. When I'm away from my large monitor, it irks me that I don't have more screen real-estate.

Re: Ask HN: M1 Pro 14' still worth it for development?

#19

It's not a good question tbh ( http://www.catb.org/~esr/faqs/smart-questions.html ) If your question is about whether to wait for the next iteration see: https://buyersguide.macrumors.com/#mac As a general purpose machine for development / web dev, then the answer is yes, it's still worth using because it was worth using when it first launched and that didn't change. Many guides come with instructions specifically fo…

I cannot recommend brew for react development (NPM). Installing NPM packages through brew is not supported by projects that require global packages. NPM installed through brew frequently runs into issues by projects that expect packages via NPM to be in /usr/local but are not symlinked. This is not even mentioning all other flaws of brew, such as owning /opt or /usr/local to your user breaking multi user support, being based on git and subsequently very slow, brew breaking on even point releases of macOS.

I recently started a job that requires react and docker so here's what works for me. Install node.js from their website, use npm to install typescript language server globally, docker binaries like Minikube suggest using `sudo install minikube`, reading the manual for `install` says it simply copies the binary over to /usr/local/bin (already in path! security issue for brew owning this to your user??). You can then use `install` for any CLI tools you need (jq!).

macOS was never designed for package managers, brew does an exceptionally poor job at being a package manager while also fighting against macOS to stay functioning. I highly recommend avoiding brew, it is certainly not a necessity nor supported by packages it hosts.

Post reply on HN